/** VERSION 1.8 **/
@charset "utf-8";

* { /** ALL ELEMENTS **/
	margin:0;
	padding:0;
}

body, html { /** APPLIES TO WHOLE DOCUMENT **/
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:100%;	
	background-attachment:fixed;
	background-image:url("../images/checkerplate.gif");
	background-repeat:repeat;
}

li {
	list-style-type:none;
}

html {
	overflow:-moz-scrollbars-vertical; /* For FF */
  overflow-y:scroll; /* For others & old IE */
}

section img {
	border:none;
	max-width:100%;
	height:auto;
	width:auto\9; /* ie8 */
}

.clrflt { /** CLEAR FLOAT **/
	font-size:0px;
	margin:0px;
	padding:0px;
	clear:both;
	float:none;
	height:0px;
	width:0px;
	border:0px none;
	line-height:0px;
}

#page-cont { /** CONTAINS PAGE **/
	width:100%;
	height:auto;
	position:relative;
}

header, footer { /** FIXED HEADER AND FOOTER **/
	width:100%;
	position:fixed;
	float:left;
}

/** when page width reaches <451px, change footer's position from fixed to relative **/
@media only screen and (max-width: 451px) {
	footer {
		position:relative;
		float:left;
	}
}

header.pos-1 { /** HEADER CONTAINER **/
	top:0px;
	height:150px;
	color:#fff;
	background-color:#1a1718;
	box-shadow:0px 5px 5px rgba(0,0,0,0.5);
}

.head-left{ /** LOGO **/
	text-align:left;
	width:1%;
	height:150px;
	float:left;
}

.head-right{ /** OFFER, NETWORKING + NAVIGATION **/
	width:99%;
	height:150px;
	float:left;
	text-align:right;
}

.h-r-top { /** OFFER + NETWORKING **/
	width:100%;
	height:75px;
	float:left;
}

.h-r-t-1 { /** OFFER **/
	width:65%;
	height:75px;
	float:left;
}

.h-r-t-2 { /** NETWORKING + LOGIN **/
	width:35%;
	height:75px;
	float:left;
	text-align:right;
}

.h-r-bottom { /** NAVIGATION **/
	width:100%;
	height:75px;
	float:left;
}

#mid-cont { /** MIDDLE AREA CONTAINER **/
	width:100%;
	height:auto;
	margin-top:130px;
	margin-bottom:40px;
	float:left;
	/**background:blue; unwanted space left between mid-cont and footer**/
}

#wrap-section { /** CONTAINS SECTIONS - DYNAMIC AREA OF WEBSITE **/ 
	width:55%;
	height:auto;/** issues when height is set to auto ------> fixed with hidden overflow **/
	margin:0 auto;
	background:#fff;
	padding-top:40px;
	padding-bottom:40px;
	overflow:hidden;
}

section {
	width:100%;
	height:auto;
	float:left;
	padding-bottom:20px;
}

footer.pos-2 { /** FOOTER CONTAINER **/
	bottom:0px;
	height:100px;
	background-color:#1a1718;
	color:#fff;
}

/*********** TEXT STYLES ***********/
h1 {
	padding:0 0 10px 20px;
	text-transform:uppercase;
	font-size:18px;
}

h2 {
	padding:0 0 10px 20px;
}

p.content {
	padding:0 20px 20px 20px;
	font-size:14px;
}

/*.pulse-txt {
 -webkit-animation: color_change 1s infinite alternate;
 -moz-animation: color_change 1s infinite alternate;
 -ms-animation: color_change 1s infinite alternate;
 -o-animation: color_change 1s infinite alternate;
 animation: color_change 1s infinite alternate;
}

@-webkit-keyframes color_change {
 from { color: #00a600; }
 to { color: #00ff00; }
}
@-moz-keyframes color_change {
 from { color: #00a600; }
 to { color: #00ff00; }
}
@-ms-keyframes color_change {
 from { color: #00a600; }
 to { color: #00ff00; }
}
@-o-keyframes color_change {
 from { color: #00a600; }
 to { color: #00ff00; }
}
@keyframes color_change {
 from { color: #00a600; }
 to { color: #00ff00; }
}*/

.pulse-txt {
	text-decoration:none;
	color:#fff;
	/**text-shadow:none;**/
	text-shadow:0px 0px 8px #00ff00, 0px 0px 8px #00ff00;
	-webkit-transition:500ms linear 0s;
	-moz-transition:500ms linear 0s;
	-o-transition:500ms linear 0s;
	transition:500ms linear 0s;
	outline:0 none;
}

/** at 759px don't display offer in header **/
@media only screen and (max-width: 759px) {	
	.h-r-t-1 { /* OFFER TEXT IN HEADER */
		display:none;
	}
	
	.h-r-t-2 {
		width:100%;
	}
}

span.green {
	color:#00d900;
}

/** General Links **/
a, a:link {
	color:#6c00d8;
	text-decoration:none;
	font-weight:normal;
}

a:hover, a:active {
	color:#00ff00;
	text-decoration:none;
	font-weight:normal;
}

ul.nw-list { /** NETWORKING AND LOGIN - UNORDERED LIST **/
	display:block;
	text-align:right;
	height:50px;
	float:right;
}

li.nw-item, iframe.nw-item { /** NETWORKING AND LOGIN - LIST ITEM **/
	display:inline;
	width:80px;
	height:50px;
	float:left;
	padding:0;
	list-style-type:none;
	/**background:red;**/
}

/** Content Links **/
.content a {
	font-weight:bold;
	font-size:14px;
}

/** Header Navigation Links **/
nav#head select {
	display:none;
} 

a.h-nav-link, a.h-nav-link:hover, a.h-nav-link:focus {
	text-decoration:none;
	color:#fff;
	/**text-shadow:none;**/
	text-shadow:0px 0px 8px #00ff00, 0px 0px 8px #00ff00;
	-webkit-transition:500ms linear 0s;
	-moz-transition:500ms linear 0s;
	-o-transition:500ms linear 0s;
	transition:500ms linear 0s;
	outline:0 none;
}

a.h-nav-link:hover, a.h-nav-link:focus {
	color:#00ff00;
	text-shadow:-1px 1px 8px #00ff00, 1px -1px 8px #00ff00;
	text-decoration:none;
}

a.h-nav-link-act, a.h-nav-link-act:hover, a.h-nav-link-act:focus {
	color:#fff;
	text-shadow:-1px 1px 8px #fff, 1px -1px 8px #fff;
	text-decoration:none;
}

ul.h-nav-list{ /** HEADER NAVIGATION - UNORDERED LIST **/
	display:block;
	width:auto;
	text-align:right;
	vertical-align:baseline;
	height:30px;
}

li.h-nav-item { /** HEADER NAVIGATION - LIST ITEM **/
	display:inline;
	margin:10px;
	list-style-type:none;
	font-size:20px;
}

/** at 669px display navigation as drop down menu **/
@media only screen and (max-width: 669px) {
	nav#head ul.h-nav-list {
		display:none;
	}
	
	nav#head select {
		display:inline-block;
		margin-top:46px;
	}
}

/** Footer Navigation Links **/
a.f-nav-link, a.f-nav-link:hover, a.f-nav-link:focus {
	text-decoration:none;
	color:#fff;
	/**text-shadow:none;**/
	text-shadow:0px 0px 8px #00ff00, 0px 0px 8px #00ff00;
	-webkit-transition:500ms linear 0s;
	-moz-transition:500ms linear 0s;
	-o-transition:500ms linear 0s;
	transition:500ms linear 0s;
	outline:0 none;
	font-size:14px;
}

a.f-nav-link:hover, a.f-nav-link:focus {
	color:#00ff00;
	text-shadow:-1px 1px 8px #00ff00, 1px -1px 8px #00ff00;
	text-decoration:none;
	font-size:14px;
}

a.f-nav-link-act, a.f-nav-link-act:hover, a.f-nav-link-act:focus {
	color:#fff;
	text-shadow:-1px 1px 8px #fff, 1px -1px 8px #fff;
	text-decoration:none;
	font-size:14px;
}

ul.f-nav-list { /** FOOTER NAVIGATION - UNORDERED LIST **/
	display:block;
	text-align:center;
	padding-top:10px;
}

li.f-nav-item { /** FOOTER NAVIGATION - LIST ITEM **/
	display:inline;
	padding:10px;
	list-style-type:none;
}

ul.f-list { /** UNORDERED LIST **/
	display:block;
	text-align:center;
	padding-bottom:10px;
}

li.f-item-1 { /** LIST ITEM **/
	display:list;
	list-style-type:none;
	font-size:13px;
}

li.f-item-2 { /** LIST ITEM **/
	display:list;
	list-style-type:none;
	font-size:12px;
}

ul.f-list-2 {
	display:none;
}

/** at 621px don't display footer menu **/
@media only screen and (max-width: 621px) {
	#foot ul.f-nav-list {
		display:none;
	}
	
	footer ul.f-list {
		display:none;
	}
	
	footer ul.f-list-2 {
		display:block;
		width:100%;
		padding-bottom:10px;
	}
	
	footer li.fl2 {
		display:list;
		list-style-type:none;
		width:100%;
		text-align:center;
	}
	
	footer li.item-1 {
		font-size:13px;
		color:#00ff00;
	}
	
	footer li.item-2 {
		font-size:13px;
	}
	
	footer li.item-3 {
		font-size:10px;
	}
}

/** TOP NAV LEARN DROP DOWN **/
#head ul {
	list-style:none;
	float:right;
	margin-top:45px;
}

#head ul a {
	display:block;
	padding:0 15px;
}

#head ul li {
	position:relative;
	float:left;
	text-align:left;
	margin:0;
	padding:0;
	height:100%;
}

#head ul ul {
	display:none;
	position:absolute;
	top:0;
	left:0;
	background:#1a1718;
	padding:0;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	box-shadow:5px 5px 8px rgba(0,0,0,0.5);
	z-index:-1;
	margin-top:30px;
}

#head ul ul li {
	float:left;
	width:100px;
}

#head ul ul a {
	line-height:100%;
	padding:10px 15px;
	font-size:18px;
}

#head ul li:hover > ul {
	display:block;
}

a.dd-link-act {
	color:#a54aff;
}

/** BACK TO TOP BUTTON **/
.scrollup {
	width:40px;
	height:40px;
	position:fixed;
	bottom:100px;
	right:10%;
	display:none;
	text-indent:-9999px;
	background-image:url("../images/blastoff.png");
	background-repeat:no-repeat;
	background-position:center center;
	background-color:#1a1718;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
}

/** to match when footer becomes relative as opposed to fixed **/
@media only screen and (max-width: 451px) {
	.scrollup {
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	}
}