/* CSS RESET */
html,body,div,tr,th,td,form,input,textarea,ol,ul,li,p,h1,h2,h3,h4,h5,h6 {padding: 0px; margin: 0px;}
img {border: 0px;}

/* BASE STYLES */
body{
		background-color: black;
		color: #cccccc;
		font-family: verdana, arial, tahoma, sans-serif;
		font-size: 100%;
}
h1{
		font-size: 1.5em;
		color: white;
}
h2{
		font-size: 1.3em;
		color: white;
}
h3{
		font-size: 1.0em;
		color: white;
}
p{
		font-size: 0.8em;
}
a:link 		{color: #1d4b69; text-decoration: none;}
a:visited 	{color: #1d4b69; text-decoration: none; outline: none;} /* removes outline in firefox */
a:hover 		{color: #1d4b69; text-decoration: underline;}
a:active	{color: #1d4b69; text-decoration: underline; outline: none;} /* removes outline in firefox */
.clear		{clear: both; height: 0px; margin: 0px; padding: 0px;}
.left{
		float: left;
}
.right{
		float: right;
}
.center{
		text-align: center;
}
.hidden{
		display: none;
}
#container {
		width: 1000px;
		background-color: black;
		margin: 0px auto 0px auto;
		padding: 0px;
}

/* TOP OF PAGE STYLES */
#top_nav{
		height: 125px;
		width: 1000px;
		position: relative;
}
		#contact_info{
				text-align: right;
				margin: 20px 20px 0px 0px;
				position: absolute;
				right: 10px;
				top: 10px;
				display: inline;
		}


/* COMMON STYLES */
#menu_bar{
		width: 100%;
}
#menu{
		background-color: #4F1617;
		list-style-type: none;
		width: auto;
		display: block;
		position: relative;
		height: 30px;
}
		#menu li{
				background-color: #4F1617;
				display: block;
				border-right: 1px solid #f7b4b4;
		}
				#menu li a{
						display: block;
						color: #f7b4b4;
						text-decoration: none;
						height: 25px;
						padding: 5px 20px 0px 20px;
				}
				#menu li a:hover{
						background-color: #1d4b69;
						color: white;
				}
				.selected_page{
						background-color: #1d4b69;
						color: white;
				}
#welcome_text p, #services_text p{
		line-height: 1.5em;
}

/* HOME PAGE STYLES */
#welcome{
		width: 380px;
}
		#welcome_text{
				width: 250px;
		}

/* SERVICES PAGE STYLES */
.panel{
		width: 250px;
		height: 500px;
		margin-right: 10px;
}
#services_text{
		width: 200px;
		margin: 0px 10px 0px 0px;
}

/* GALLERY PAGE STYLES */
#thumb_nav{
		border: 1px solid #6a3f3f;
		height: 160px;
}
.thumbnail{
		margin: 8px 12px 0px 0px;
		border: 3px solid black;
}
.selected_thumbnail{
		border: 3px solid white;
}
.nav_btn{
		margin: 10px 30px 0px 20px;
}
.second_row{
		margin: 8px 12px 0px 80px;
}

/* FOOTER STYLES */
#footer{
		padding: 3px 0px 20px 0px;
		text-align: center;
		background-color: #4F1617;
}
		#footer p{
				font-size: 0.6em;
		}
		#footer a{
				padding: 0px 10px;
		}
