* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #000; 
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 85%;
height: 100%;
background: url(../images/left_column_bg.gif) repeat-y #fff;  /*** This is the left column background "faked" with an image. You can also position the image using left top repeat-y also. The background color #fff (white) will be the background color for our content ***/
}
a {
	color: #000000;
	text-decoration: underline;
}
a:hover {
	color: #000000;
	text-decoration: none;
}
p {
padding: 7px 0 7px 0;
}

.clear { clear: both; }
#mainContainer {
min-height: 100%;
background: url(../images/right_column_bg.gif) 100% 0 repeat-y; /*** This is the right column background "faked" with an image. You can also position the image using right top repeat-y also. ***/
}
* html #mainContainer {
height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	height: 150px;
	background: #000000;
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;
	background-position: left;
}
#headerleft {
	height: 150px;
	background: #000000;
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;
	background-position: left;
}
#headerright {
	height: 125px;
	width: 265px;
	background-color: #000;
	position: absolute;
	padding: 25px 20px 0px 0px;
	right: 0px;
	top: 0px;
}
#headerbottom {
	height: 20px;
	background-image: url(../images/header_bottom.gif);
	background-repeat: no-repeat;
	background-position: left;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 30px; /*** Same width as margin-left for the float-wrap div ***/
padding-right: 20px; /*** Our right column width ***/
}
.inner {
width: 100%;
padding-bottom: 45px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}

.float-wrap {
float: left;
width: 100%;
margin-left: -20px; /*** Same length as .outer padding-left but with negative value ***/
}

#content {
float: right;
margin-right: -25px; /*** Same length as .outer padding-left but with negative value ***/
width: 100%;
background: url(../images/top_right_curve.gif) 100% 0 no-repeat; /*** Our upper right rounded image to create the rounded content look ***/
position: relative; /*** IE needs this  ***/
}

.contentWrap{
	padding: 0px 20px 0px 0px;
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 20px;
background: url(../images/top_left_curve.gif) 100% 0 no-repeat; /*** Our upper left rounded image to create the rounded content look ***/
position: relative; /*** IE needs this  ***/
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 20px;
position: relative; /*** IE needs this  ***/
margin-right: -20px; /** This negative margin-right value is in this example the same as the right column width. ***/
position: relative; /*** IE needs this  ***/
}

/**************************
FOOTER
**************************/
#footer {
height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
background: url(../images/footerbg.gif) repeat-x #000; /*** The lower part of the rounded content look ***/
}
#footerLeft, #footerRight {
height: 15px; 
background: #000;
}
#footerLeft {
float: left; 
width: 30px; /*** Same length as .outer padding-left ***/
background: url(../images/bottom_left_curve.gif) 100% 0 no-repeat #000; /*** Our left bottom part of the rounded content look ***/
}
#footerRight {
float: right;
width: 30px; /*** Same length as right plus some padding. If you get a horisontal scrollbar try to adjust this value. ***/
background: url(../images/bottom_right_curve.gif) no-repeat #000; /*** Our right bottom part of the rounded content look ***/
}
/**************************
MENU
**************************/
.menu {
	width: 370px;
	padding: 123px 0px 0px 320px;
}

	#nav {
		height: 24px;					/* main menu width and bg colour */		
		font-size: 11px;
	}

	#nav, #nav ul {
		padding: 0;
		margin: 0;
		list-style: none;
		line-height: 1;
	}

	#nav a {
		display: block;
		margin: 0;
		font: bold 100% Verdana, Arial, Helvetica, sans-serif;
		color: #FFF;
		text-decoration: none;
		text-align: center;
	}
	
	#nav1 a {
		width: 46px;   /* Change this to what ever value you like and of course you can repeat this for all the different menus */
		height: 19px;
		padding: 5px 0px 0px 0px;	
	}
	#nav2 a {
		width: 105px;
		height: 19px;
		padding: 5px 0px 0px 0px;
	}
	#nav3 a {
		width: 88px;
		height: 19px;
		padding: 5px 0px 0px 0px; 
	}
	#nav4 a {
		width: 79px;
		height: 19px;
		padding: 5px 0px 0px 0px;    
	}
	#nav4 ul li a{
		width: 100px;
		padding: 5px 0px 5px 8px;
	}
	#nav5 a {
		width: 50px;
		height: 19px;
		padding: 5px 0px 0px 0px;
	}

	#nav a.parent {
		background: #00FF00 url(../images/rightarrow.gif) center right no-repeat; /* dropdown arrow and colour if 3rd dropdown */
	}

	#nav a:hover {
		color: #FFF;
		background-color: #ff0000; /* rollover colour top menu */

	}

	#nav li {
		float: left;
		padding: 0;
		margin: 0;
	}

	#nav li.last_menu_item {
		border: none;
	}

	/* Show/Hide second level menus */
	#nav li ul {
		position: absolute;
		width: 12em;
		left: -999em;
		height: auto;
		margin: 0;

	}

	#nav li li {
		width: 125px;
		margin: 0;
	}

	#nav li ul a {
			/* drop down width in pixels */
		background-color: #3f7ca6; /* drop down main menu colour */
		color: #FFFFFF;
		font-weight: 100;
		border: 0;
		text-align: left;
	}
	#nav li ul a:hover {
		   /* drop down width in pixels */
		background-color: #145074; /* drop down main menu colour */
		color: #ffffff;
		font-weight: 100;
		border: 0;
		text-align: left;
		pading: 0px 0px 0px 5px;
	}

	#nav li:hover ul {
		left: auto;
	}

	#nav li ul ul {
		margin: -24px 0 0 110px;
	}		
			

	/* Hide third level menus */
	#nav li:hover ul ul, #nav li.sfhover ul ul {
		left: -999em;
	}

	/* Show third lever menus */
	#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {
		left: auto;
	}
	/* LIGHTBOX */
	#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;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
	}



