

    
  
 
 

html,body{
      margin:0;
      padding:0;
      height:100%;
      border:none
	  color:white;
}
 

 

body {

	background-color:gray;
	font-size:large;

}
#holdall{

	  width:870px;
	

}

#header{

	width:870px;
	height:60px;
	background-color:gray;
	

}
#logo{
	height:60px;
	background-color:white;
	float:left;
	width:175px;
	text-decoration:none;
}

#logo a img{

	border:none;
}

#nav{
	height:20px;
	background-color:gray;
	width:625px;
	float:left;
	padding-left:40px;
	color:navy;
	font-size:0.75em;
	font-weight:bold;
}

#banner{
	width: 585px;
	background-color:#666666;
	position: relative;
	margin: 0 110px 5px 175px;
}

#container{
	min-height:265px;
	background-color:#666666;
	text-align:right;
	margin:0px auto;
	width:870px;
}

#left{
	 /*total width 175 -> width 155+ padding 20*/
	width: 155px;
	text-align: right;
	float:left;
	padding-right: 20px;
	padding-top: 80px;
	color:white;
	font-style:italic;
	font-size:1em;
	
}

 

#right{
	min-width:110px;
	min-height:250px;
	float:right;
	  
}
 
#content{

	color: white;
	background-color:#A3A3A3;
	width: 585px;
	min-height: 300px;
	margin: 0 110px 0 175px;
	

}
#content #h1{

	color:navy;
	font-size:1.2em;
	text-align:center;
}

#content #h2{

	color:navy;
	font-size:1em;
	text-align:center;
	font-style:italic;

}
#left #font1{
	color:white;
	font-size:0.75em;
	 

}
#content #font1{
	color:white;
	font-size:0.75em;
	font-style:italic;
	text-align:left;
}

#content #font2{
	color:white;
	font-size:0.75em;
	font-style:italic;
	text-align:center;
}

#footer{
	height:50px;
	background-color:gray;
	color:white;
	font-size:0.65em;
	width:870px;
	text-align:center;
	 
}

#footer a{
	text-decoration:none;
	color:white;
}



#menunav{
	background-color:#303030;
	 width: 585px;
	margin: 0 110px 0 175px;
	text-align:left;
	 
}

#menunav a{
	text-decoration:none;
	color:white;
	font-size:0.75em;
}

#menunav a:hover{
	color:#F4A460;
}

#menunav #current{
	color:#F4A460;
}

#submenu{
	text-align:center;
}


#submenu a{
text-decoration:none;
	color:white;
	font-size:0.75em;
}

#submenu a:hover{

	color:navy;
}

#submenu #current{
	color:navy;
}

#left a {
     
    text-decoration:none;
    color:white;
	
     
}
    
        
#left #current {
    background-color:#303030;
}

    
     
#left a:hover {
		
		 
	 background-color:#303030;
		 
}


/*

	GalleryView Stylesheet
	
	Use the CSS rules below to modify the look of your gallery.
	
	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	
	<div class="gallery">
		<div class="panel">
			<img src="path/to/image.jpg" />
			<div class="panel-overlay">
				...overlay content...
			</div>
			<div class="overlay-background"></div>
		</div>
		<ul class="filmstrip">
			<li class="frame current">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
			<li class="frame">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
		</ul>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#work { visibility: hidden; }

/* GALLERY CONTAINER */
.gallery { background: #ddd; border: 1px solid #aaa; padding: 5px;}

/* LOADING BOX */
.loader { background: url(loader.gif) center center no-repeat #ddd; }

/* GALLERY PANELS */
.panel {}

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background { height: 60px; padding: 0 1em; }

/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background { background: #222; }

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay { color: white; font-size: 0.7em; }
.panel .panel-overlay a { color: white; text-decoration: underline; font-weight: bold; }

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 5px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap { border: 1px solid #aaa; }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap { border-color: #000; }

/* FRAME IMAGES */
.frame img { border: none; }

/* FRAME CAPTION */
.frame .caption { font-size: 11px; text-align: center; color: #888; }

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }

/* POINTER FOR CURRENT FRAME */
.pointer {
	border-color: #000;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer {
	filter: chroma(color=pink);
}