/* CSS STYLESHEET FOR ALL PAGES */
/* CREATED BY : Kenold Beauplan */
/* CREATED ON : June 10th, 2007 */
/* MODIFIED ON: June 16th, 2007 */

body {
	margin-top: 0;
	background-image: url(../images/bg-body.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	background-color: #005059;
	font:11px/1.5 'Lucida Grande', 'Lucida Sans Unicode', 'Trebuchet MS', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif;
}

a:link {
	color: #00CCFF;
	text-decoration: none;
}


a:visited {
	text-decoration: none;
	color: #FFFF00;
}

a:hover {
	text-decoration: underline;
	color: #FF9900;
}

a:active {
	text-decoration: none;
	color: #00CCFF;
}

#container {
	background-color: #FFF;
	width: 760px;
	margin-left: auto;
	margin-right: auto;
	height: auto
}

#header {
	background-color: #111516;
	margin-left: auto;
	margin-right: auto;
	width: 760px;
	height: 80px;
}

#header_logo {
	float: left;
	width: 225px;
	height: 80px;
}

#header_menu {
	float: left;
	background-color: #000;
	width: 530px;
	height: 78px;
}

/* styles for menus */
#navigation {
	padding-top: 2px;
	width: 530px;
	color: #FFF;
	background-color: #111516;
	height: 78px;
}

#nav {
	width: 530px;
	list-style-type: none;
	margin: 0; padding: 0;
	background-color: #111516;
	height: 78px;
}
#nav li {
	float: left;
	margin-right:5px;
}
#nav li#home-nav { 
	margin-left: 5px;
	}
#nav li a {
	display: block;
	margin: 0px 5px 0px;
	height: 78px;
	overflow:hidden;
	padding-top:0;
	text-indent: -99999px;
	/*border-top: 6px solid #a12a59;*/
}

#home-nav a {
	width: 85px;
	background: #111516 url(../images/btn_home.png) 0 0 no-repeat;		
}


#bio-nav a {
	width: 61px;
	background: #111516 url(../images/btn_bio.png) 0 0 no-repeat;		
}

#portfolio-nav a {
	width: 95px;
	background: #111516 url(../images/btn_portfolio.png) 0 0 no-repeat;		
}

#blog-nav a {
	width: 85px;
	background: #111516 url(../images/btn_blog.png) 0 0 no-repeat;		
}

#contact-nav a {
	width: 85px;
	background: #111516 url(../images/btn_contact.png) 0 0 no-repeat;		
}

#nav li a:hover, 
#home #home-nav a,
#bio #bio-nav a,
#portfolio #portfolio-nav a,
#blog #blog-nav a,
#contact #contact-nav a
 { 
 	 background-position: 0 -80px;
}
/* end menu styles*/


#navigation #nav .current a {
	
 
 	 background-position: 0 -80px;
}


#splash {
	background-color: #FFF;
	width: 760px;
	height: auto;
}

/*#blog {
	width: 760px;
	height: auto; 
} */

#tv_up {
	margin-top: 10px;
	padding: 0 15px 0 15px;
	background-color: #FFF;
	width: 730px;
	height: 259px;
}

#vidleft {
	float: left;
	background-color: #FFF;
	width: 346px;
	height: 259px;
}

#vidright {
float: right;
	/*margin-left: 361px;*/
	background-color: #FFF;
	width: 374px;
	height: 259px;
}

#bio_up {
	margin-top: 10px;
	padding: 0 15px 0 15px;
	background-color: #FFF;
	width: 730px;
	height: auto;
}

#bioleft {
	float: left;
	background-color: #FFF;
	width: 182px;
	height: auto;
}

#bioleft img {
	padding: 4px 4px 4px 4px;
	border: 2px solid #CCC;
}

#bioright {
	margin-left: 200px;
	background-color: #FFF;
	width: 420px;
	height: auto;
	margin-bottom: 20px;
}

#bioright p {
	line-height: 25px;
}

#contact_up {
	margin-top: 10px;
	padding: 0 15px 0 15px;
	background-color: #FFF;
	width: 730px;
	height: auto;
}

#contactleft {
	float: left;
	background-color: #FFF;
	width: 182px;
	height: auto;
}

#contactleft img {
	padding: 4px 4px 4px 4px;
	border: 2px solid #CCC;
}

#contactright {
	margin-left: 200px;
	background-color: #FFF;
	width: 420px;
	height: auto;
	margin-bottom: 20px;
}

/*********************form*****************/

#formset {
	background-color: #FFF;
	height: auto;
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
}

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  	margin: 0;
  	padding: 0;
  	width: 500px;
}

form fieldset {
  	/ * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
	border-color: #000;
	border-width: 1px;
    border-style: solid;
    padding: 10px;        /* padding in fieldset support spotty in IE */
    margin: 0;
}

form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 100px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}



form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

#footer {
	font-family: Tahoma, Verdadana, sans-serif;
	color: #01778b;
	border-top: 1px solid #003366;
	width: 760px;
	text-align: center;
	clear: both;
	background-color: #000a0f;
	padding-top: 10px;
	height: 30px;
}	

#footer a {
	color: #0b8ca2;
	text-decoration: none;
}

#footer a:hover {
	color: #CCC;
}


/* =more in module
________________________________________________________________________*/
#more {
	font-family: georgia, sans-serif;
	font-size: 12px;
	padding-top: 10px;
	margin-left: 40px;
	
}

#more .in {
    float: left;
    margin-top: 1em;
    padding: 0;
    width: 195px;
}

#more .edition-icon {
    float: left;
}

#more .edition-title {
    float: none;
}


/* =reset borders
________________________________________________________________________*/
#more a img {
	border: 1px #CCC solid;
	padding: 2px;
	margin-right: 10px;
}



/* =typography
________________________________________________________________________*/

a.more:link, a.more:visited, a.more:focus, a.more:active {
	border-bottom: 1px dotted #666;
	color: #888;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
}

a.more a:hover {
	border-bottom: 1px dotted #333;
	color: #333;
}
a:focus  {outline:none;}

h2 a:link, h2 a:visited, h2 a:focus, h2 a:active {
	border-bottom: 1px dotted #8A8A8A;
	color: #000;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.35em;
	text-decoration: none;
}

h2 a:hover {
	border-bottom: 1px dotted #000;
	text-decoration: none;
}

/* =more in module
________________________________________________________________________*/
#more h2 {
	margin-left: 70px;
}

#more .in h2 {
	font-size: 1em;
	font-weight: normal;
	margin: 2px 0 2px 70px;
}

#more .in h2 a:link,  #more h2 a:visited,  #more h2 a:hover,  #more h2 a:focus,  #more h2 a:active {
	border-bottom: 1px dotted #8A8A8A;
	color: #000;
	line-height: 1.35em;
	text-decoration: none;
}

#more .in h2 a:hover {
	border-bottom: 1px dotted #000;
}

#more p {
	color: #474747;
	font-size: .9em;
	margin-left: 70px;
	}
	

/* =paragraphs spacing
________________________________________________________________________*/
p {
	color: #474747;
	font-size: 1em;
	line-height: 1.5em;
	 margin: 0 0 1.5em 0;
}

.news_hd {padding:0; margin:0; border-bottom: 1px #CCC dotted; }


.address {
	font-family: Georgia, sans-serif;
	font-size: 14px;
}