/* main.css
*
* Created for use on skelman.com
*
*/

body,
html {
	margin:0;
	padding:0;
	background:#BBD9EE;
	color:#000;	
}
body {
	min-width:920px;
	margin:0;
	padding:0;
	color:#000;
	font:76%/130% Verdana, Geneva, Arial, Helvetica, sans-serif;
}
h1{
	font:2em Verdana, Geneva, Arial, Helvetica, sans-serif;
	padding:2px 0 0 10px;
	margin:0
}
p {
	font:1em Verdana, Geneva, Arial, Helvetica, sans-serif;
	padding:0em 1em 0 2em !important
}
img {
	display:block;
	margin-top:1em;
	background:#eee
}
a:link { text-decoration: underline; color: #blue;}
a:active { text-decoration: none }
a:visited { text-decoration: underline }
a:hover {text-decoration: none; }

#wrap {
	background:#BBD9EE;
	margin:0 auto;
	width:920px;
}
#header {
	background:#BBD9EE;
}
#header h1 {
	padding:5px;
	margin:0;
}

#nav {
	float:left;
	width:100%;
	background:#BBD9EE;
	padding:0;
	font-size:0.8em;
	line-height:normal;
	margin-bottom:15px;
}
#nav ul{
	margin:0;
	padding:0;
	list-style:none;
}
#nav li{
	display:inline;
	margin:0;
	padding:0;
}
#nav a {
	float:left;
	background:#E7F1F8 url("../images/btn.png") no-repeat left top;
	padding:0 0 0 9px;
	text-decoration:none;
	color:#000;
}
#nav a span {
	float:left;
	display:block;
	background:#E7F1F8 url("../images/btn.png") no-repeat right top;
	padding:4px 15px 3px 6px;
}
#nav #current a span {
	padding-bottom:4px;
}
#nav a:hover,
#nav a:hover span {
	background-color:#BBD9EE;
	color:#000;
}
#nav #current a span,
#nav #current a {
	background-color:#fff;
}
#main hr {
	 width: 95%;
}
#main table tr td {
	font-size:0.8em;
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
#nav a span {float:none;}
/* End IE5-Mac hack */

#main {
	background:#fff;
	float:left;
	width:710px;
}
#main h2,
#main h3,
#main p {
	padding:0 10px 0 0;
	margin: .8em 0 0 0;
}
#main table {
	margin: 0 0 0 20px;	
}
#main img {
	margin: 0px;
}
#main form {
	padding: 0;
	margin: 0;	
}
#sidebar {	
	float:left;
	width:170px;	
	padding: 0 0px 0 4px;
	margin-left: 10px;
}
#sidebar span {
	padding-left:10px;
	font-size: 1em;
}
#sidebar ul{
	margin:0;
	padding:0;
	list-style:none;
}
#sidebar li{
	display:inline;
	margin:0;
	padding:0;
	font-size: .8em;	
}
#sidebar a {
	float:right;
	background:#E7F1F8;	
	text-decoration: none;
	color:#000;
	padding: 2px 10px;
	width: 150px;
}
#sidebar a span {
	float:right;
	background:#E7F1F8;
	padding:2px 10px 0px 0px;	
}
#sidebar a:hover, 
#sidebar a:hover span,
#sidebar #top a:hover,
#sidebar #top a:hover span,
#sidebar #bottom a:hover,
#sidebar #bottom a:hover span
{
	background-color:#BBD9EE;
}
	
#sidebar #top a {
	background:#E7F1F8 url("../images/btn.png") no-repeat left top;
}
#sidebar #bottom a {
	background:#E7F1F8 url("../images/btn.png") no-repeat left bottom;
}

#sidebar #current a span,
#sidebar #current a,
#sidebar #currenttop span,
#sidebar #currentbot span
{
	background:#fff;	
}
#sidebar #currenttop a {
	background:#fff url("../images/btn.png") no-repeat left top;	
}
#sidebar #currentbot a {
	background:#fff url("../images/btn.png") no-repeat left bottom;
}

#sidebar h3,
#sidebar p {
	margin-left: 10px;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#sidebar a span {float:right;}
/* End IE5-Mac hack */


#footer {
	background:#BBD9EE;
	font-size:0.8em;
	clear:both;
}
#footer p {
	padding:5px;
	margin:0;
}
#rightcol {
	width: 10px;
	float: right;
}
.ordertd {
       font-size: 1.2em;
}
.titletext {
	color: #2d308f;
	font-weight: bold;
}

/*TEST CSS IMAGE GALLERY*/
.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #BBD9EE;
padding: 5px;
left: -1000px;
border: 1px blue;
visibility: hidden;
color: black;
text-decoration: none;
white-space: nowrap;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -200px;
left: 110px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
/* top -200px, left 110px, z-index 50 (orig vals)*/