/*
Company:		homegrownclone
File:		index.css - This contains all the styles for the index/splash page.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Text Styles - Styles for text
Lists - unordered and ordered lists
Links - links
Misc - anything that doesn't fit elsewhere
*/

/*<group=Global Browser Reset>*/
* {
padding:0;
margin:0;
}

body { padding:5px; }

h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, label, ul, ol, dl, fieldset, address { margin:20px 0; }

li, dd, blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/*</group>*/

/*<group=HTML, Body>*/
body {
	padding:20px 0 20px 0; 
	margin:0;
	background-image:url(../images/bg_252C2E.gif);
	font-family: Verdana, sans-serif;
	font-size: 11px; 
	color:#77B6D0;
	text-align:center;
	
	scrollbar-3d-light-color: #C1C5C6;
	scrollbar-arrow-color: #7E7B6F;
	scrollbar-base-color: #C1C5C6;
	scrollbar-dark-shadow-color: #C1C5C6;
	scrollbar-face-color: #F4F6F6;
	scrollbar-highlight-color: #E2E2E2;
	scrollbar-shadow-color: #C1C5C6;
}
/*</group>*/

/*<group=Layout>*/
a:link, a:visited, a:active { text-decoration:underline; color:#77B6D0; }
a:hover { text-decoration:none; color:#77B6D0; }
#entercontainer { text-align:center; }
/*</group>*/

/*<group=Enter Rollover CSS -- not used, could not center in FF>*/
/*
ul#nav { background-color: transparent; text-align:center; }
ul#nav li { margin: 0; padding: 0; list-style: none; width: 127px; height: 41px; display: block; overflow: hidden; background-color: transparent; }
ul#nav a { width: 127px; height: 41px; display: block; overflow: hidden; border: none; background-color: transparent; }
ul#nav a:hover { background-position: -127px 0; }
ul#nav a:active { background-position: -127px 0; }
li#enter a  { width: 127px; height: 41px; background: url(../images/btn_enter.gif) 0 0 no-repeat;}
ul#nav li span { display: none; overflow: hidden; }
*/
/*</group>*/