<!--
BODY
{
	background-repeat: no-repeat;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	background-attachment: fixed;
	
	margin: 0;
}
button {
	background: none;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	cursor: pointer;
	padding: 0;
}
#main
{
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#nav
{
}

#nav LI
{
	margin-bottom: -1px;
	border-bottom: 1px solid #999;
	background-color: #CCC;
	display: block;
	padding: 1em;
	padding-left: 1.5em;
	padding-right: 1.5em;
	float: left;
	box-shadow: inset 0 -5px 5px -5px #999;
	-moz-box-shadow: inset 0 -5px 5px -5px #999;
	-khtml-box-shadow: inset 0 -5px 5px -5px #999;
}

#nav LI.active
{
	border-bottom: 0;
	background-color: #E6ECF5;
	border-top: 2px solid #999;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	margin-top: -1px;
	box-shadow: inset 0 5px 5px -5px #FFF;
	-moz-box-shadow: inset 0 5px 5px -5px #FFF;
	-khtml-box-shadow: inset 0 5px 5px -5px #FFF;
}

#nav LI A
{
	color: #444;
	font-size: 14px;
	text-decoration: none;
}

#nav UL
{
	list-style: none;
	margin: 0;
	padding: 0;
}

#content, .clear
{
	clear: both;
}
#back {
    color: #ffffff;
    float: left;
    font-size: 2em;
}
.singlecontent {
	background: rgb(35, 27, 68);
    background: rgba(35, 27, 68, 0.6);
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
    padding: 0 10px;
}
.singlecontent .nliTD, .singlecontent .formField, .singlecontent .formCaption, .formField strong {
    color: #ffffff;
}
.singlecontent h3 {
    border: medium none;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 50px;
    text-align: center;
}
.singlecontent .nliIconTD {
    display: none;
}
.singlecontent #signupForm {
	background: none;	
}
#signupForm #back {
    margin-top: -10px;
}
#footNav
{
	margin-top: 1em;
	text-align: center;
}

#copyright
{
	margin-top: 0.5em;
	color: #ffffff;
	font-size: 12px;
	text-align: center;
	padding-bottom: 5px;
}

.head
{
	margin-bottom: 10px;
	font-size: 80px;
	font-family: 'Open Sans', sans-serif;
	color: #ffffff;
	text-align: center;
}

FORM
{
	display: inline;
}
/* ===== Login ===== */
#login {
	position: relative;	
}
#loginForm input, #loginForm select, #signupForm input, #signupForm select, #lostpw input, #lostpw select {
    background: #ffffff;
    border: 1px solid #1a0818;
    border-radius: 0;
	-webkit-border-radius: 0;
    box-shadow: none;
	-webkit-box-shadow: none;
    font-size: 17px;
    line-height: 24px;
    padding: 5px;
}
#loginForm .formCaption {
    display: none;
}
#loginForm input[type="submit"], #lostpw input[type="submit"] {
	background: #ffffff;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #2f2349;
    color: #ffffff;
    width: 100%;
	cursor: pointer;
}
label.login {
    color: #ffffff;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;	
}
.goldsubmit {
    color: #222222 !important;
}
/* ===== Password Forgotten - Form ===== */
#showFPW {
    color: #7782a8;
    font-size: 1.5em;
	cursor: pointer;
}
/* ===== Signup (loaded using ajax) ===== */
#signupForm {
	background: rgb(35, 27, 68);
    background: rgba(35, 27, 68, 0.6);
    padding: 10px;
	margin-bottom: 200px;
}
#signupForm h3 {
	color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
}
#signupForm td {
    color: #eeeeee;
    font-size: 14px;
	text-shadow: none;
}
#submit-signup {
	border: 1px solid #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-size: 20px;
    padding: 10px 20px;
}
#signup-spinner {
	text-align: center;
	color: #ffffff;
	font-size: 3em;
	display: block;
}
#error {
	display: none;	
}
#signupForm .invalid {
	background: #CC5961;
    background: rgba(204, 89, 97, 0.5);
}
/* ===== Topbar; gets findex when you scroll down ===== */
#topbar {
	display: block;
	width: 100%;
	height: 60px;
	background: #ffffff;
	text-align: center;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	z-index: 999;
}
#topbar.fixed {
	position: fixed;
	top: 0;
	left: 0;
	-webkit-animation-duration: 0.5s; 
    animation-duration: 0.5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
    -webkit-animation-name: goDown; 
    animation-name: goDown; 
}
@-webkit-keyframes goDown { 
   0% { 
        -webkit-transform: translateY(-200px); 
    } 
    100% { 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes goDown { 
    0% { 
        transform: translateY(-200px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
}

#topbar a {
    color: #222222;
    font-family: "Open Sans",sans-serif;
    font-size: 16px;
    line-height: 60px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    text-transform: uppercase;
}
#topbar .left {
	float: left;	
	height: 60px;
}
 
#topbar .right {
	float: right;	
}
#topbar img {
    vertical-align: middle;
	border: none;
}
#topbar-content {
	width: 800px;
	display: inline-block;
	text-align: left;
}
#scrolldown {
    color: #ffffff;
    cursor: pointer;
    float: left;
    font-size: 4em;
    left: 50%;
    margin-left: -50px;
    position: relative;
    text-align: center;
    text-shadow: 0 0 2px #241c43;
    top: -53px;
}
.scrolltop {
	height: 100%;
}
#morecont {
	background: #ffffff;
}
#morecont.topfixed {
	padding-top: 50px;	
}
#morecont .content, #morecont #about {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
/* ===== Loader for internal links ===== */
#moreloader {
    font-size: 3em;
    text-align: center;
    color: #2f2349;
	display: block;
}
#about, #load {
	padding-top: 40px;	
	padding-bottom: 30px;
}
#load {
    border-top: 1px solid #74688e;
    box-shadow: 0 0 3px #584c72;
	-webkit-box-shadow: 0 0 3px #584c72;
}
#load:empty {
	display: none;	
}
#load.noabout {
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}
.reg {
    background: none;
    border: 2px solid #5c5076;
    color: #5c5076;
    cursor: pointer;
    font-size: 20px;
    margin: 37px;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0;
	text-decoration: none;
	width: 156px;
	height: 50px;
}
.loading {
    display: block;
    height: 32px;
    margin: auto;
    text-align: center;
    width: 32px;
}
.loginTable {
    margin: auto;
}
.loadingPage
{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	background-color: #FFFFFF;
	display: block;
}

.mainTable
{
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	border-spacing: 0px;
}

.dragColumn
{
	cursor: e-resize;
	width: 4px;
	height: 100%;
	display: inline;
	float: left;
	border: none;
}

.dragRow
{
	cursor: n-resize;
	width: 10px;
	height: 4px;
	display: block;
	float: right;
	border-top: 1px solid #D6D6D6;
	border-bottom: 1px solid #D6D6D6;
}

.toolBar
{
	width: 100%;
	display: block;
	height: 65px;
	border-bottom: 1px solid #9A9A9A;
	background-image: url(../images/toolbar/background.gif);
	text-align: center;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

.toolBarButton
{
	height: 23px;
	background-image: url(../images/toolbar/group_bg.gif);
}

.statusBar
{
	width: 100%;
	display: block;
	height: 20px;
}

a
{
	text-decoration: none;
	color: #76bcfc;
}

a:hover
{
	text-decoration: underline;
}

.errorText
{
	font-weight: bold;
	color: #FF3333;
}

INPUT,SELECT,TEXTAREA
{
	border: 1px solid #999;
	font-family: tahoma, helvetica, arial;
	font-size: 11px;
	border-radius: 3px;
	-moz-border-radius: 3px;
    -khtml-border-radius: 3px;
	padding: 2px;
}

SELECT
{
	font-family: tahoma, helvetica, arial;
	font-size: 11px;
    padding: 1px;
}

.smallInput
{
	font-size: 10px;
}

.file
{
	border: 1px inset #666666;
	font-family: tahoma, helvetica, arial;
	font-size: 12px;
	height: 18px;
}

.invalidField[type=checkbox]
{
	outline: 4px solid #FF9999;
}

.invalidField
{
	background-color: #FF9999;
}

INPUT:focus,SELECT:focus,TEXTAREA:focus
{
	background-color: #FDFDFD;
	border: 1px solid #666;
	box-shadow: inset 0px 1px 2px #ccc;
	-moz-box-shadow: inset 0px 1px 2px #ccc;
	-khtml-box-shadow: inset 0px 1px 2px #ccc;
}
.nliDiv
{
	background-image: url(../images/main/bg.png);
	background-repeat: repeat-x;
	background-color: #E6ECF5;
	width: 650px;
	text-align: left;
	border-radius: 5px;
	-moz-border-radius: 5px;
    -khtml-border-radius: 5px;
}

.nliLogo
{
	position: relative;
	top: -22px;
	left: -22px;
}

.nliTitle
{
	position: relative;
	font-size: 24px;
	font-weight: bold;
	float: right;
	top: -80px;
	left: -40px;
}

.nliTable
{
	width: 100%;
}

.nliIconTD
{
	width: 38px;
	text-align: right;
	vertical-align: top;
	padding-right: 8px;
	display: none;
}

.nliTD
{
	text-align: left;
	vertical-align: top;
	padding-right: 15px;
}

TD,DIV,P,BODY
{
	font-family: tahoma, helvetica, arial;
	font-size: 15px;
	color: #ffffff;
}

H3
{
	color: #666;
	font-size: 50px;
	margin-top: 0.25em;
	font-weight: normal;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
}

.formCaption
{
	width: 130px;
	text-align: right;
	padding-right: 8px;
}

.formField
{
	text-align: left;
}

.footerText
{
	padding-top: 8px;
	text-align: right;
	width: 650px;
}

.faqQuestion
{
	width: 100%;
	height: 20px;
	line-height: 19px;
	cursor: pointer;
	font-size: 18px;
}

.faqAnswer
{
	width: 100%;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
	border-bottom: 1px solid #999999;
	background-color: #FFFFFF;
}

.noJSWarning
{
	border: 1px solid #990000;
	background-color: #FF9999;
	width: 650px;
	padding: 5px;
}

.formStatus
{
	padding-left: 8px;
}

.passwordSecurity
{
	border: 1px solid #999;
	height: 17px;
	width: 180px;
	background-color: #FFF;
	border-radius: 3px;
	-moz-border-radius: 3px;
    -khtml-border-radius: 3px;
	padding: 1px;
}

.secureBar
{
	height: 100%;
}

#maintenance i {
	color: #ffffff !important;	
}
.maintenanceBox
{
	border: 1px solid #DDDDDD;
	background-color: #FFFFCC;
	padding: 5px;
	text-align: center;
	max-width: 400px;
}

.maintenanceBox.nonmobile, .maintenanceBox.nonmobile div {
	color: #ffffff;
	text-shadow: 0 0 2px #29224c;
}
.maintenanceBox H2
{
	margin-top: 5px;
	margin-bottom: 5px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 100;
}

/* ===== Styles for error page ===== */

#errortable {
    left: 50%;
    margin-left: -300px;
    margin-top: -120px;
    position: absolute;
    top: 50%;
	color: #ffffff !important;
	
	-webkit-animation-duration: 1s; 
	animation-duration: 1s; 
	-webkit-animation-fill-mode: both; 
	animation-fill-mode: both; 
	-webkit-animation-name: goDown; 
	animation-name: goDown;
}
#errortable h1 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 100;
	text-align: center;
	font-size: 36px;
	color: #ffffff !important;	
	text-shadow: 0 0 2px #29224c;
}
#errortable h2, #errortable i {
	color: #ffffff !important;
	text-shadow: 0 0 2px #29224c;
}
#errortable tr td img {
	display: none;	
}
#errortable table img {
	display: block !important;	
}
/* ===== Animations ===== */
		@-webkit-keyframes goDown { 
		   0% { 
				-webkit-transform: translateY(-200px); 
				opacity: 0.3;
			} 
			100% { 
				-webkit-transform: translateY(0);
				opacity: 1;
			} 
		} 
		
		@keyframes goDown { 
			0% { 
				transform: translateY(-200px); 
				opacity: 0.3;
			} 
			100% { 
				transform: translateY(0); 
				opacity: 1;
			} 
		}

//-->
