/* CSS Document */
/*	uws.css

	Notes:
	All positioning is done using floats (no absolute positioning).

	We encounter the IE div spacing bug frequently, and use the "* html" hack to
	get around it. Layout is nearly identical in IE & FF.
	
	Anytime you make positioning changes, look for a corresponding "* html" rule for WinIE specific layout.
*/
/* debugging:
div { border: solid 1px red; }
*/


/*Zero the defaults
*/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, a { 
	margin: 0; 
	padding: 0; 
	border: 0; 
}


/* global stuff */
.image { border: 0px; }
.clear { clear: both; }

a { text-decoration: none; }
a:link { color: #c3ab6d; }
a:visited { color: #c3ab6d; }
a:hover { color: #fff; }
h1 { color: #793234; text-align: left; margin: 20px 0 20px 0; font-size: 18px; border-bottom: 1px solid #793234;  }
.bold {font-weight: bold; }
.center { text-align:center; }
.firstletter { color: #793234;  font-size: 150%; }
.imagecenter { text-align: center;  border: 0;}
div.pictureleft {float: left; margin: 0px 10px 0px 0px; }
div.pictureright {float: right; margin: 0px 0px 0px 10px; }
table { margin-left: 120px; }
.tablehead { margin-left: 50px; color: #f9a350; font-size: 130%; }
li { margin: 10px 0px 10px 20px; }
.italic { font-style: italic; }
.indent { margin-left: 50px; margin-right: 50px; }


html { font-size: 100.01%; }

body { color: #c3ab6d; background-color: #000; font-family: Arial, Helvetica, sans-serif; font-size:14px; }

/* the fullpage div has a specified width to keep the main information from collapsing when a window is shrunk
*/
div#fullpage { text-align: center;  width: 850px; margin-left: auto; margin-right: auto; margin-top: 50px; margin-bottom: 50px; border: 1px solid #c3ab6d; }

/*header is where the logo and the line live*/

div#header { width: 100%; height: 150px; border-bottom: 1px solid #c3ab6d; }


div#watchphoto { height: 150px; width: 200px; float: left; padding-top: 0px; margin-left: 0px; border-right: 1px solid #c3ab6d; }

div#address { color: #c3ab6d; width: 300px; height: 140px; font-size: 100%; text-align: right; float: right;  margin-top: 5px;  margin-right: 10px; }
div#address a:link { text-decoration:none; }
div#address a:visited { color: #c3ab6d; }
div#address a:hover { text-decoration: underline; }


div#companyname { font-size: 24px; }
div#companydescription { font-size: 18px; margin-bottom: 5px; }


/*	the nav div is for the navigation elements. in this case, the section titles.
 */
 

div#nav { margin: 20px 0px 20px 0; text-align: center; }



/*	the main div is where content is rendered on the various pages.
 */
div#main { width: 750px; height: 600px; text-align: justify; background: #fff; margin-bottom: 20px; margin-left: 30px; color: #000; padding: 0 20px 0 20px;}
div#main a:link { color: #793234; }
div#main a:visited { color: #793234; }
div#main a:hover { color: # color: #793234; text-decoration:underline; }

div#sectiontitle {  color: #793234; text-align: center; margin: 0px 0 20px 0; font-size: 28px; padding-top: 30px; }


div.homeblock { width: 750px; text-align: center; font-weight: bold; margin-top: 50px; font-size: 18px; line-height: 36px; color: #793234; }




/* copyright */

div#copyright { font-size: 80%; margin-top: 20px;  text-align: center; }
div#trina { font-size: 80%; margin-top: 5px; text-align: center; margin-bottom: 10px; }

