/*--------------------------------------------------------

   *Filename:		styles.css
   *Description:	Global CSS
   *Version: 		1.0.0(/-/-2009)
   *Website:		http://www
   *Author: 		Brice Corbin
   
   ==STRUCTURE:===========================================
   
   *Page width:		960px
   *Number of column: 	2
   
  
--------------------------------------------------------*/

/* CSS Reset
--------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*==STRUCTURE:===========================================
  
  $__header	Header Definitions
  $__menu	Global Site Navigation
  $__content	Everything within the content
  
-------------------------------------------------------*/

/* __General Styles
-------------------------------------------------------*/

body {
	background: #f2f2f2 url('../imgs/bg.png') repeat-x;
	font-size: 62.5%;
	font-family: Arial,Geneva,Helvetica,sans-serif;
}

p {
	font-size: 1.2em;
	color: #666;
	font-family: Arial,Geneva,Helvetica,sans-serif;
	line-height: 18px;
}
a:link, a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #333;
	text-decoration: underline;
}

ul {
	list-style: disc;
}

li {
	font-family: Arial,Geneva,Helvetica,sans-serif;
	font-size: 1.2em;
	color: #666;
	line-height: 16px;
	list-style: disc;
}

/* __Fonts
--------------------------------------------------------*/

@font-face {
  font-family: "CatalogLight";
    src: url('pfcatalog-light-web.eot');
    src: url('pfcatalog-light-web.eot?#iefix') format('embedded-opentype'),
         url('pfcatalog-light-web.woff') format('woff'),
         url('pfcatalog-light-web.ttf') format('truetype'),
         url('pfcatalog-light-web.svg#PFCatalogLight') format('svg');
    font-weight: normal;
    font-style: normal;
  }
/* __Menu
--------------------------------------------------------*/

/* __layout
--------------------------------------------------------*/

#wrapper {
	width: 960px;
	margin: 0 auto;
}

#header {
	width: 960px;
	height: 130px;
}

#middle {
	margin-top: 30px;
}

.left {
	width: 220px;
	padding-left: 10px;
	float: left;
}

.right {
	width: 700px;
	margin-left: 20px;
	float: left;
}

#content {
	clear: both;
	width: 960px;
	padding-top: 40px;
	min-height: 500px;
}
#text {
	width: 460px;
	margin-right: 20px;
	float: left;
}

#footer {
	background-color: #000;
	width: 960px;
	height: 30px;
	clear: both;
	float: left;
	margin-top: 50px;
}

/* __Text (p, span...)
--------------------------------------------------------*/

#middle .left p {
	margin-top: 20px;
	color: #666;
}
#content p {
	font-size: 12px;
	line-height: 18px;
	color: #666;
}

/* __Titles Styles (h1,h2,h3...)
--------------------------------------------------------*/

h1 {
	font-family: "CatalogLight", Arial, Geneva,Helvetica,sans-serif;
	color: #333;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

#middle h1 {
	font-size: 36px;
	color: #666;
	font-weight: normal;
	text-shadow: 1px 1px 1px rgba(255,255,255,1);
	border-bottom: 1px solid #ccc;
	-moz-box-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
	padding-bottom: 25px;
}

h2 {
	font-family: "CatalogLight", Arial,Geneva,Helvetica,sans-serif;
	font-size: 2.4em;
	color: #333;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

#content h2 {
	text-shadow: 1px 1px 1px rgba(255,255,255,1);
	border-bottom: 1px solid #ccc;
	-moz-box-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 4px rgba(255, 255, 255, 0.4);
	padding-bottom: 10px;
	margin-bottom: 20px;
}

h3 {
	font-family: Arial,Geneva,Helvetica,sans-serif;
	font-size: 2em;
	color: #333;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

h4 {
	font-family: Arial,Geneva,Helvetica,sans-serif;
	font-size: 1.8em;
	color: #333;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

/* __Lists Styles (ul,li,ol...)
--------------------------------------------------------*/

#header ul {
	list-style: none;
	float: left;
	margin-left: 117px;
}

#header li {
	display: inline;
	line-height: 14px !important;
}

#header li a {
	color: #ccc;
	padding: 20px;
	text-decoration: none;
	display: block;
	float: left;
}

#header li a:hover {
	color: #fff;
	background: url('../imgs/menubg.png') bottom center no-repeat;
}

#header .current a {
	background: url('../imgs/menubg.png') bottom center no-repeat;
	color: #fff !important;
}

#content .left ul {
	list-style: none;
}

#content .left li {
	margin: 10px 0;
	font-size: 14px;
	list-style: none;
}

#content .left li a {
	color: #666;
}
#content .left li a:hover {
	color: #000;
	text-decoration: none;
}

#content .right ul {
	list-style: none;
	margin: 15px;
	
}

#content .left .current a{
	margin-left: 10px;
	color: #000 !important;
}

#content .right ul li {
	margin: 7px 0;
}

#content .right ul li a{
	color: #666;
}

#content .right ul li a:hover {
	color: #000;
	text-decoration: none;
}
	


/* __Links Styles (a:link...)
--------------------------------------------------------*/

#content p a {
	color: #0099ff;
}

#content p a:hover {
	color: #0099ff;
	text-decoration: underline;
}




/* __Img Styles
--------------------------------------------------------*/

#header img {
	float: left;
}

#middle .right img {
	border: 5px solid #fff;
	-moz-box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

#content .right img {
	border: 5px solid #fff;
	-moz-box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
	margin-bottom: 20px;
}

/* __Form Styles
--------------------------------------------------------*/


/* __Sitemap Styles
--------------------------------------------------------*/

#sitemap {
        margin: 0 0 0 20px !important;
        color: #fff!important;
        list-style: disc !important;
}

#sitemap li {
        font-size: 14px !important;
        color: #fff !important;
        margin: 3px 0;
}

#sitemap li a {
        color: #fff !important;
        text-decoration: none !important;
}

#sitemap li a:hover {
        text-decoration: underline !important;
}

#sitemap ul {
        margin: 0 0 0 30px !important;
}

#sitemap ul li {
        font-size: 12px !important;
        color: #aaa !important;
}

#sitemap ul li a {
        color: #aaa !important;
}