/*
	CSS3 stuff to remember
	
	=== Box shadow:
	-moz-box-shadow: 2px 2px 6px black;
	-webkit-box-shadow: 2px 2px 6px black;
	box-shadow: 2px 2px 6px black;

	=== Rounded corners:
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-left-radius: 5px;
	
	=== Opacity:
	-moz-opacity:.80;
	filter:alpha(opacity=80);
	opacity:.80;
*/


/* body, everything, header, nav, footer and note */
body{
	background:#262626 url('../img/bgn.jpg') repeat;
	font:13px/1.5 normal Calibri,Arial,sans-serif;
	color:silver;
	text-align:center;
}

#everything{
	width:800px;
	margin:0 auto;
	text-align:left;
}

#note{
	font-family:verdana;
	font-size:10px;
	text-align:center;
	color:#567897;
	text-shadow: 2px 2px 3px black;
	margin: 0px 0px 20px 0px;
}

#header{
	padding:10px 0px;
	font-family:verdana;
	font-size:10px;
}

#header h1{
	margin:0;padding:0;
	font-family:Helvetica;
	margin-top:4px;
	font-size:40px;
	float:left;
}

#nav {
	float:right;
	margin-top:20px;
	-moz-opacity:.80;
	filter:alpha(opacity=80);
	opacity:.80;
	-moz-box-shadow: 2px 2px 6px black;
	-webkit-box-shadow: 2px 2px 6px black;
	box-shadow: 2px 2px 6px black;
}

#nav ul{
	list-style:none;
	margin:0;
	background:#151a20;
	border:1px solid #181a1e;
}

#nav li{
	float:left;
}

#nav li a{
	display:block;
	padding:10px 15px;
}

#content{
	background:#222222; /* original orange is FF9900, second ffa928 */
	border-bottom:0px;
	padding:15px;
	-moz-box-shadow: 2px 2px 6px black;
	-webkit-box-shadow: 2px 2px 6px black;
	box-shadow: 2px 2px 6px black;
	border-radius:5px;
}
#content h2{
	margin-top:20px;
	margin-bottom:5px;
}
#content h2.compact{
	margin-top:0;
}

#footer {
	padding:10px 30px;
	font-family:verdana;
	text-align:left;
	color:#666;
	margin: 0px 0px 0px 0px;
	text-shadow:1px 1px 3px black;
}


/* stuff for the login page */

#formContainer {
	width:800px;
	margin:95px autp;
}

form {
	display: block;
}

.formRow {
    padding: 7px 0;
}

.formRow label {
    display: inline-block;
    margin-left: -72px;
    padding-right: 8px;
    text-align: right;
    width: 180px;
}

.formRow label.radioLabel {
    width:auto;
    margin:0 5px 0 0;
}

.formRow input,
.formRow textarea{
    padding: 5px 8px;
    background-color:#262626;
    border:none;
    color:#ccc;
    outline:none;
    resize:none;
    font:14px/1.2 Calibri,Arial,sans-serif;
    width: 200px;
    
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    
    -moz-box-shadow: 1px 1px 1px #191919 inset, 0 0 1px #181818 inset;
    -webkit-box-shadow: 1px 1px 1px #191919 inset, 0 0 1px #181818 inset;
    box-shadow: 1px 1px 1px #191919 inset, 0 0 1px #181818 inset;
}

.formRow textarea{
    vertical-align: top;
    width: 600px;
	height: 400px;
    overflow:auto;
}

.formRow input[type=submit],
.formRow input[type=button]{
    width:120px;
    margin-left: 120px;
    cursor:pointer;
}

.formRow .button{
    background: url("../img/sprite.png") no-repeat 0 -70px;
    border: none;
    position:relative;
    cursor: pointer;
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 10px 0 15px;
    margin: 10px 0 0 120px;
    position: relative;
    text-shadow: 1px 1px 0 #272727;
}

.formRow .button span{
    background:url('../img/sprite.png') no-repeat 100% -70px;
    height:34px;
    right: -5px;
    top:0;
    position:absolute;
    width:10px;
}

.formRow .button:hover{
    background-position:0 -104px;
}

.formRow .button:hover span{
    background-position:100% -104px;
}

.formRow .button:active{
    bottom:-1px;
}

/* fancy stuff */

#sexybutton {
	background-color:#424242; /* Fall Back */  
	width:75px;
	height:25px;
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0.17, rgb(71,71,71)),color-stop(0.59, rgb(58,58,58))); /* Gradient background */
	background-image: -moz-linear-gradient(center top,rgb(71,71,71) 17%,rgb(58,58,58) 59%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 0 rgba(255,255,255,0.15);; /* Set both the top shadow, and the underlying shadows */
	border: 1px solid #202020; /* Border options */
	border-radius: 3px;
	color:#d9d9d9;  /* Text Style */
	text-align:center;
	text-shadow: 0px 1px 0px #000000;
	filter: dropshadow(color=#000000, offx=0, offy=1);
	-moz-user-select: -moz-none; /*Make text unable to highlight*/
	-khtml-user-select: none;
	-webkit-user-select: none;
   	user-select: none;
	cursor:pointer; /* Set Appropriate Cursor */
}


/* <a> classes */

a.nav:link {
	color:#00B6FF;
	text-decoration:none;
	}

a.nav:visited {
	color:#00B6FF;
	text-decoration:none;
	}

a.nav:hover {
	color:#00B6FF;
	text-decoration:underline;
	}

a.nav:active {
	color:#00B6FF;
	text-decoration:underline;
	}
a.content:link {
	color:#2fc2ef;
	text-decoration:none;
	}

a.content:visited {
	color:#2fc2ef;
	text-decoration:none;
	}

a.content:hover {
	color:#2fc2ef;
	text-decoration:underline;
	}

a.content:active {
	color:#2fc2ef;
	text-decoration:underline;
	}
