/*This is the core style sheet of the site.*/



/* SITEWIDE */
* {
	margin:0;
	padding: 0;
}

#container {
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}



/* TEXT  */

p {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-color: #333;
	text-decoration: none;}

.style1 {
	font-size:11px;
	margin: 0px;
	color: #999999;
}

/* LINKS */
a {
	text-decoration: none;
}

a:link {
}

a:hover {
}

hr {
	height:1px dotted;
    width:100%;
    background:#819ab8;}



/* BODY */
body {
	height: 100%;
	margin-top: 0px;
	padding-top: 20px;
	behavior: url(css/csshover.htc);
	width: 100%;
}



/* HEADER */
#logo {
	padding: 0 40px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}



/* TOP NAV */

#topNav {
	width: 600px;
	float: right;
	height: 18px;
	margin-right: 100px;
}


#topNav ul li {
	float: right;
	list-style-type: none;
	color: #CCCCCC;
}

#top_nav ul li {
	display: block;
	float: left;}

#top_nav ul li a {
	text-decoration: none;
	display: block;
	width: 152px;
}

#top_nav li:hover {color: fff;}

#top_nav #active a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;}

/* LEFT NAV */

#leftNav{
	float: left; 
	width: 10%; /* since this element is floated, a width must be given */
	padding: 0 0 0 40px; /* top and bottom padding create visual space within this div  */
}

#leftNav ul li{
	list-style:none;
}

/* PROJECT MENU */

#projectMenu {
	margin-left: 55px;
	width: 800px;
	height: 18px;}

#projectMenu ul li {
	float: left;
	list-style-type: none;
	font-size: 18px;
	color: #CCCCCC;}



/* IMAGES LAYOUT */


#imageContainer {
	margin: 0 20px 0 18%; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
    position:relative;
    }

    #imageContainer img {
      position:absolute;
      top:0;
      left:0;
      z-index:8;
      opacity:0.0;
    }

    #imageContainer img.active {
      z-index:10;
      opacity:1.0;
    }

    #imageContainer img.last-active {
      z-index:9;
    }


/* TEXT CONTAINER */
#textContainer {
	float: left;
	margin-left: 40px;
	margin-top: 30px;
	width: 400px;
	height: 100%;
	font-size: 12px;
	line-height: 14px;
	font-family: Arial, Helvetica, sans-serif;
}

#textContainer h1 {
	font-size: 14px;
	line-height: 30px;
	color:#666666	}

#textContainer p {
	font-size: 12px;
	color: #666666;
	line-height: 16px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}
	
#textContainer a {
	color: #3372B8;
	font-weight: bold;}	


/* FOOTER */

#footer {
	margin-left: 55px;
	padding-top: 80px;
    float:left;
    height: 80px;
	width: 100%;
	color: #CCCCCC;}



/* PAGE NAVIGATION */

#pageNavigation {
	float: left;
	margin-left: 110px;
	padding-top: 40px;
	width: 470px;
	height: 18px;}

#pageNavigation ul li {
	float: left;
	list-style-type: none;}
	
#arrowButtons {
	float: left;
	margin-left: 110px;
	padding-top: 40px;
	width: 320px;
	height: 18px;}
	
#arrowButtons ul li {
	float: left;
	list-style-type: none;}



/* FLOATS */

.clearboth {clear: both; }

.floatleft {float:left;}

.floatright {float:right;}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}

.clearfix {display: inline-block;}

.clearfix {display: block;}

*html .clearfix {height: 1%;}

* html #listmenu ul {float:left;}

* html a {display:block:}



/* Hides from IE-mac \*/
* html .floatholder {height: 1%;}
/* End hide from IE-mac */

