
/*
 css reset used from
   http://meyerweb.com/eric/tools/css/reset/
*/
/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*/
/*
 end of css reset script
*/


/* reset */
* {
	 padding: 0px ;
	 margin: 0px ;
}

/* global settings */
html {
	 height: 100% ; 
}
body {
	 height: 100% ;

	 color: #d3d3d3 ;
	 font-family: arial, sans-serif ;

	 background: #000000 url('/img/bg.png') no-repeat 50% 0 ;
}

a {
    cursor: pointer ;
	 text-decoration: none ;
	 border-bottom: 1px solid #97d2ea ;
}
a:link { 
	 color: #92cfe7 ;
}
a:visited { 
	 color: #92cfe7 ;
}
a:hover {
	 color: #f0f0f0 ;
	 text-decoration: none ;
	 border-bottom: 1px solid #ff8c00 ;
}
a:active { color: #f0f0f0 ; }


/* input elements */
input {
	 background-color: #ffffff ;
	 color: #262626 ;
	 border-width: 2px ;
	 border-style: solid ;
	 border-color: #575757 ;
}
input:focus {
	 border-color: #5EA2DB ;
}
select:focus {
	 border-color: #5EA2DB ;
}


iframe {
	 /* for 160x600 and 120x600 side by side */
	 display: inline-block ;
}


/* footer 
   -
   footer styling taken and modified from

     http://ryanfait.com/sticky-footer/

*/
div#footer-body-wrap {
	 min-height: 100% ;
	 height: auto !important ;
	 height: 100% ;

	 /* div#footer.height + div#footer.border-top */
	 margin: 0 auto -106px;
}
div.footer-push {
	 /* div#footer.height + div#footer.border-top + desired top margin */
	 height: 166px ;
}
div#footer {
	 height: 105px ; 
	 border-top: 1px solid #282828 ;
	 background-color: #181818 ;

	 width: 100% ;
}
div#footer div#footer-body {
	 margin-top: 4px ;
	 margin-left: auto ;
	 margin-right: auto ;

/*	 width: 750px ; */
	 text-align: center ;
}

div#footer table {
	 margin-right: 60px ;
	 display: inline-block ;
/*	 display: inline ; */

	 text-align: left ;
	 font-size: 15px ;
}
div#footer table td {
	 padding: 2px ;
}
div#footer table span.footer-table-title {
	 border-bottom: 1px solid #cccccc ;
	 font-size: 16px ;
}



/* common styles */
table.nospace {
    border-collapse: collapse ;
    border-spacing: 0px ;
}
.hand { cursor: pointer ; }
.hidden { display: none ; }


/* rounded corner css */
.rnd-body {
	 background-color: #262626 ;

	 border-left: 1px solid #383838 ;
	 border-right: 1px solid #383838 ;
}

/* light grey */
b.rnd-top, b.rnd-bot { /* background */
	 display: block ;
}
b.rnd-top b, b.rnd-bot b { /* foreground */
	 display: block ;
	 overflow: hidden ;

	 border-style: solid ;
	 border-color: #383838 ;
}
b.r1 {
	 height: 1px ;
	 margin: 0 5px ; 
	 background: #383838 ;
	 border-width: 0px 1px 0px 1px ;
}
b.r2 { 
	 height: 1px ;
	 margin: 0 3px ;
	 background: #262626 ;
	 border-width: 0px 2px 0px 2px ;
}
b.r3 { 
	 height: 1px ;
	 margin: 0 2px ; 
	 background: #262626 ;
	 border-width: 0px 1px 0px 1px ;
}
b.r4 { 
	 height: 2px ; 
	 margin: 0 1px ;
	 background: #262626 ;
	 border-width: 0px 1px 0px 1px ;
}


/* utility selectors */
.clear { clear: both ; }
