/*****************************************************************************************
/ RGSwims.com
/ Standard Border Color (Dark): #000022
/ Standard Border Color (Light): 
/ Site Background Color: #FEFEFE
/ Menu Text Color: #FEFEFE;
/
/ Notes:
/ - Synch: BG-Header.jpg.width = div.width
/ - Synch: BG-Header.jpg.height = div#pane-header.height
/ - Synch: BG-Footer.jpg.height = div#pane-footer.height
/ - Synch: BG-Menu.jpg.height = #navcontainer.height
/ - div div.width = div.width - (div.padding-left x 2) + ...
/*****************************************************************************************/
* {
	margin: 0px;
	padding: 0px;

	border-width: 0px;
	border-color: #000022;
	border-style: solid;

	font-family: georgia,serif;
	line-height: 138%;
	color: black;
	font-weight: normal;
	vertical-align: top;
	text-align: left;
	text-decoration: none;

	-moz-box-sizing: border-box;		/* Following 2 items force IE type padding, calculated WITHIN declared width */
	box-sizing: border-box;
}

#version {
	color: #000023;
	background: white;
	border: 1px dotted black;
	width: 80px;
	height: 20px;
	position: absolute;
	left: 1px;
	top: 1px;
	font-size: 10px;
	padding: 2px;
}

body {
	background: #FEFEFE url("/images/BG-Body.jpg") top center no-repeat;
	font-size: 0.8em;
	text-align: center;
	cursor: url("/images/curHouse.cur"),url("images/curHouse.cur"),default;
}
/* Firefox requires .gif for cursor */

/* Redeclare due to global formatting */
b { font-weight: bold; }
u { text-decoration: underline; }
center { text-align: center; }

img, object {
	-moz-box-sizing: content-box;		/* More intuitive for these types to follow content box method */
	box-sizing: content-box;
}

/********************************************
   Site Defaults ****************************
/********************************************/
div#separator {
	clear: both;
}

p, ul, ol { margin-top: 10px; text-align: justify; }

ul li {
	margin-left: 1.4em;
	margin-bottom: 0.4em;
	vertical-align: middle;
}

/********************************************
 ********************************************
/********************************************/


/* Controls width of entire site */
div#canvas {
	width: 760px;
	margin: 0px auto;
}

div#pane-header {
	height: 135px;
	background: url("/images/BG-Header.jpg") top center no-repeat;
}

div#pane-middle {
	background: transparent;
	padding: 5px 0px 10px 0px;		/* Compare with footer */
}

div#pane-footer {
	border-top-width: 2px;
	text-align: center;
	padding-top: 10px;
	font-size: 0.85em;
}

/*****************************************************************************************
/ Standard Anchor Link
/*****************************************************************************************/
a:link,
a:visited,
a:active {color: #212121; font-weight: bold; text-decoration: underline; }
a:hover	{	color: #990000; }

a.rollover:hover img {
	opacity: .85;
	filter: alpha(opacity=85);
}

/* Contact Us page */
a.button,
a.button:visited {
	background: #000066;
	color: #FFFFFF;
	padding: 3px 8px;
	text-align: center;
	border-width: 1px;
}

a.button:hover {
	color: #000033;
	background: #EEEEFF;
}
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/

/*****************************************************************************************
/ Horizontal Menu Bar
/ Ref: http://css.maxdesign.com.au/listamatic2/horizontal04.htm
/ - Synch: navcontainer.height - 2 = ul#navlist li ul.top
/*****************************************************************************************/

#navcontainer {
	background: url("/images/BG-Menu.jpg") top center no-repeat;	/* Menu background color or picture */
	height: 45px;
	padding-left: 0.7em;
}

ul#navlist {
	list-style-type: none;
	position: relative;
	margin-top: 0px;			/* Reverses earlier declaration */
	top: 12px;						/* #navcontainer padding-top pushes down the subsequent element on IE */
}

ul#navlist li {
	float: left;
	color: #FEFEFE;				/* Menu Separator */
	position: relative;		/* For submenu to start right below main menu */
	padding: 0px;
	margin-left: 0px;			/* Reverses earlier declaration */
	background: url("/images/BG-Button.jpg") top center no-repeat;
	display: block;
	width: 119px;					/* Controls size of highlight, matches dimensions of BG-Button */
	height: 33px;
}

ul#navlist li a {
	display: block;				/* VERY Important */
	font-family: verdana;
	text-decoration: none;
	color: #FEFEFE;
	font-size: 12px;
	height: 27px;					/* Shorter than 33 to disregard drop shadow height */
	padding: 3px 0px 0px 5px;
}

/* Hover Highlight */
ul#navlist li a:hover {
	color: #000033;
	background: url("/images/BG-Button-over.jpg") top center no-repeat;
}

/* Submenu */
ul#navlist li ul {
	position: absolute;
	top: 18px;
}

ul#navlist li ul li {
	background: #262466;
	border: 1px solid white;
	width: 110px;
	height: auto;
	margin: 0px;
}

ul#navlist li ul li a:hover,
li.submenuhover {
	background: #9c9bc7;
}

ul#navlist li ul { display: none; }
ul#navlist li.show ul { display: block; }
/*****************************************************************************************/
/*****************************************************************************************/
/*****************************************************************************************/

/* Body paragraph */
h1 {
	font-size: 1.7em;
	margin: 0px 0px 5px 0px;		/* Match bottom spacing of div#h1 */
	padding: 2px;
	padding-top: 4px;
	border-width: 1px 0px;
}

input,
select,
textarea {
	font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
	border-width: 1px;
	border-color: #CCCCCC #999999 #999999 #CCCCCC;
	padding: 1px 0px 1px 2px;
	background: #F9F9FB;
}
/* Body paragraph ends */