body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
img {
    border: none;	
}
.thrColFixHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #FFFFFF;
	background-color: #666666;
} 
.thrColFixHdr #header {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #CC0000;
	height: 144px;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-color: #CC0000;
}
.thrColFixHdr #container #header img {
    margin-left: 10px;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 175px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	color: #000000;
	background-color: #EBEBEB;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 8px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	color: #000000;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 10px;
	text-decoration: none;
}
.thrColFixHdr #mainContent {
	color: #FFFFFF;
	font-size: medium;
	border-left-width: 1px;
	border-left-style: none;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #CC0000;
	color: #000000;
} 
.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.thrColFixHdr #container #sidebar2 p {
	font-size: small;
	background-color: #EBEBEB;
}

/*nav start*/
.nav, .nav * {
    margin:0;
    padding:0;
}
.nav {
    line-height:1.0;
    float:left;
}
.nav ul {
    background:#000; /*IE6 needs this*/
    width:9.45em;
}
.nav li {
    background:#000;
    float:left;
    list-style:none;
    position:relative;    
    height: 34px;
	z-index: 3000;
}
.nav li .submenu {
    background-image: url(../images/down.gif);
    background-repeat: no-repeat;
    background-position: 95% 40%;   
}
.nav a {
    color: #FFF;
    display:block;
    float:left;
    padding: 8px 12px 0;
    text-decoration:none;
    height: 26px;
}
.nav li ul {
    float:none;
    top:-999em;
    position:absolute;
}

.nav li:hover,
.nav li.sfHover,
.nav a:focus, .nav a:hover, .nav a:active {
    background:#666;
}
.nav li:hover ul, /* pure CSS hover is removed below */
ul.nav li.sfHover ul {
    left:-1px;
    top:2.0em;
}

.nav li:hover li ul,
.nav li.sfHover li ul {
    top:-999em;
}
.nav li li:hover ul, /* pure CSS hover is removed below */
ul.nav li li.sfHover ul {
    left:9.45em;
    top:-1px;
    width:9.45em;
}
/*following rule negates pure CSS hovers
so submenu remains hidden and JS controls
when and how it appears*/
.superfish li:hover ul,
.superfish li li:hover ul {
    top: -999em;
}
.nav li:hover .submenu, .nav li.sfHover .submenu {
    background-image: url(../images/over.gif);
    background-repeat: no-repeat;
    background-position: 95% 40%;
}
.nav li li {
    background:#000;
    float:left;
    width: auto;
}
.nav li li li {
    background:#000;
}
.nav li li a {
    float:none;
    padding-right:0;
    width: 192px;
}
/*nav end*/

/*lightbox begin*/
#lightbox{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 100;
    text-align: center;
    line-height: 0;
    }

#lightbox a img{ border: none; }

#outerImageContainer{
    position: relative;
    background-color: #fff;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    }

#imageContainer{
    padding: 10px;
    }

#loading{
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
    }
#hoverNav{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
    width: 49%;
    height: 100%;
    background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
    display: block;
    }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }


#imageDataContainer{
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: auto;
    width: 100% 
    }

#imageData{ padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }  
#imageData #caption{ font-weight: bold; }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;  }           
#imageData #bottomNavClose{ width: 66px; float: right; margin: 1.0em;}  
        
#overlay{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 500px;
    background-color: #000;
    }
    
    
/* * * * * V 0.3 * * * * * /
/* html,body thanks to Torben  - http://blog.schreiter.info/ */
html, body {
    height:100%;
    min-height:100%;
}

/*lightbox end*/


/*no clue begin*/
.style2 {font-size: small}
.style3 {
    font-size: x-large;
    font-weight: bold;
    direction: ltr;
}
.style4 {
    font-size: 85%
}
.style6 {font-size: 80%; }
.style7 {
    font-size: 70%;
    font-style: italic;
}
.style8 {
    font-size: medium;
    vertical-align: text-top;
    display: inline;
    padding: 0px;
}
/*no clue end*/
