@charset "utf-8";
/* --------------------------------------------------------------------------- */
/* ---------------------------------- fonts ---------------------------------- */
/* --------------------------------------------------------------------------- */
@font-face {
    font-family: 'OlneyLight';
    src: url('../fonts/olney_light-webfont.eot');
    src: url('../fonts/olney_light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/olney_light-webfont.woff') format('woff'),
         url('../fonts/olney_light-webfont.ttf') format('truetype'),
         url('../fonts/olney_light-webfont.svg#OlneyLight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ColaborateLightRegular';
    src: url('../fonts/ColabLig-webfont.eot');
    src: url('../fonts/ColabLig-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ColabLig-webfont.woff') format('woff'),
         url('../fonts/ColabLig-webfont.ttf') format('truetype'),
         url('../fonts/ColabLig-webfont.svg#ColaborateLightRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* --------------------------------------------------------------------------- */
/* ---------------------------------- Reset ---------------------------------- */
/* --------------------------------------------------------------------------- */
html, body{
	margin:0;
	padding:0;
	height:100%;
}
h1, h2, h3, h4, h5, h6, ul, li{
	font-weight:normal;
	margin:0;
	padding:0;
}
body{
	font:15px 'OlneyLight';
	color:#333333;
	background:url(../images/bg.jpg);
}
p {
	margin:0; 
	padding:0;
	padding-bottom:0.9em;
}
img {border:none;}
/* Note: Make HTML 5 elements block-level for consistent styling */
header, nav, article, section, footer, aside {display:block;}
/* --------------------------------------------------------------------------- */
/* --------------------------------- Wrapper --------------------------------- */
/* --------------------------------------------------------------------------- */
#wrapper{
	width:100%;
	min-height:100%;
	position:relative;
	background:url(../images/bg-wrapper.jpg) no-repeat top center;
}
/* --------------------------------------------------------------------------- */
/* --------------------------------- Header ---------------------------------- */
/* --------------------------------------------------------------------------- */
header{
	margin:0 auto;
	width:990px;
	height:165px;
	position:relative;
	background: url(../images/bg-menu-product-resources.png) no-repeat bottom center;
	z-index:1000;
}
header #top{
	height:100px;
}
/* --------------------------------------------------------------------------- */
header #top #left{
	float:left;
	width:365px;
	height:100px;
}
header #top #left img{
	padding:15px 0 0 10px;
}
/* --------------------------------------------------------------------------- */
header #top #right{
	float:right;
	width:625px;
	height:100px;
}
/* --------------------------------------------------------------------------- */
header #bottom{
	height:65px;
}
header #bottom .box-styling{
	background-color:#612f1d;
	/* ----------------------------- */
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
	/* ----------------------------- */
	-moz-box-shadow: 2px 2px 2px #2f1005;
	-webkit-box-shadow: 2px 2px 2px #2f1005;
	box-shadow: 2px 2px 2px #2f1005;
}
/* --------------------------------------------------------------------------- */
/* ------------------------ Customer Service Number -------------------------- */
/* --------------------------------------------------------------------------- */
header #top #right #customer-svc{
	height:54px;
	/* ------------- */
	display:none;			/* Remove for Logout and Edit Profile */
	background-color:#FF0;
	/* ------------- */
}
header #top #right #customer-svc p{
	width:408px;
	height:31px;
	font-size:15px;
	margin:6px 0 0 172px;   /* Adjust right margin to align to main menu */
	padding:8px 0 0;
	text-align:center;
	background: #099 url(../images/bg-customer-svc.png) no-repeat;
	text-shadow:1px 1px 1px #999;
}
/* --------------------------------------------------------------------------- */
/* ------------------------------ Menu - Main -------------------------------- */
/* --------------------------------------------------------------------------- */
#menu-main{
	height:40px;
	width:100%;
	/* ------------- */
	margin-top:60px;		/* Push down bacause 'Customer Service Number' display = none */
	/* ------------- */
}
#menu-main ul{
	height:40px;
	text-align:right;
	margin-right:30px;
}
#menu-main ul li{
	text-align:center;
	list-style: none;
	display:inline-block;
}
#menu-main ul li a:link, #menu-main ul li a:visited{
	padding-top:15px;
	height:25px;
	font-size:16px;
	display:inline-block;
	color:#FFF;
	text-decoration:none;
	text-shadow:2px 2px 1px #000;
}
#menu-main ul li a:hover{
	color:#FFCC00;
}
#menu-main ul li#but-01 a{
	margin-right:-15px;
	width:95px;
	background-image:url(../images/bg-menu-main-but-01.png);
}
#menu-main ul li#but-02 a{
	margin-right:-15px;
	width:120px;
	background-image:url(../images/bg-menu-main-but-02.png);
}
#menu-main ul li#but-03 a{
	margin-right:-15px;
	width:120px;
	background-image:url(../images/bg-menu-main-but-03.png);
}
#menu-main ul li#but-04 a{
	width:130px;
	background-image:url(../images/bg-menu-main-but-04.png);
}
/* --------------------------------------------------------------------------- */
/* ---------------------------- Menu - Products ------------------------------ */
/* --------------------------------------------------------------------------- */
#menu-products{
	margin:9px 5px 0 14px;
	width:635px;
	height:40px;
	float:left;
	position:relative;
	z-index:2500;
}
/* 
Menu taken from ... "http://www.handy-html.com/simple-css-dropdown-menu-updated/"
*/
ul#nav {
	margin:8px 0 0 8px;
	font-size:16px;
}
ul.drop a {
	display:block; 
	color: #fff; 
	text-decoration: none;
}
ul.drop, ul.drop li, ul.drop ul { 
	list-style: none; 
	margin: 0; 
	padding: 0; 
	background-color:#612f1d;
	background-color:rgba(97, 47, 21, 0.6); 
	color: #fff;
}
ul.drop {
	position: relative; 
	float: left; 
}
ul.drop li {
	float: left; 
	vertical-align: middle; 
	zoom: 1; 
	padding: 4px 10px;
	border-right:1px solid #a87360;
}
ul.drop li.last{
	border:none;
}
ul.drop li.spacer{
	border-top:1px solid #612f1d;
	margin-top:15px;
}
ul.drop li.deactivate{
	color:#a87360;
}
ul.drop li:hover {
	position: relative; 
	cursor: default; 
	background: #ff3600;
}
ul.drop li.deactivate:hover {
	background:#612f1d;
}
ul.drop ul { 
	visibility: hidden; 
	position: absolute; 
	top: 100%; 
	left: 0; 
	width: 250px;  
}
ul.drop ul li {
	padding:8px 10px;
	float: none;
	border:none;
	border-bottom:1px solid #a87360;
}
ul.drop ul ul {
	top: 0; 
	left: 100%;
	border-left:1px solid #a87360;
}
ul.drop li:hover > ul { 
	visibility: visible;
}
/* --------------------------------------------------------------------------- */
ul.drop ul ul li{
	padding:0;
}
ul.drop ul ul li a{
	padding:8px 10px;
}
/* --------------------------------------------------------------------------- */
ul.drop ul ul li.disable{
	background-color:#612f1d;
	background-color:rgba(97, 47, 21, 0.6);
}
ul.drop ul ul li.disable a{
	color:#b18575;
	cursor: default; 
}
/* --------------------------------------------------------------------------- */
/* ---------------------------- Resource - Login ----------------------------- */
/* --------------------------------------------------------------------------- */
header #bottom #resources{
	margin:9px 0 0;
	width:320px;
	height:40px;
	float:left;
	color:#fff;
	font-size:16px;
	position:relative;
}
#resources .button a{
	width:280px;
	height:16px;
	display:block;
	padding:12px 20px;
	cursor:pointer;
	background:#612f1d url(../images/bg-resource-button-arrow-down.png) no-repeat right center;
	text-decoration:none;
	color:#FFF;	
	/* ----------------------------- */
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}
#resources .button a:hover{
	background:#ff3600 url(../images/bg-resource-button-arrow-down.png) no-repeat right center;
}
#resources .button a.active{
	background:#ff3600 url(../images/bg-resource-button-arrow-up.png) no-repeat right center;
}
/* --------------------------------------------------------------------------- */
#resources #login-box{
	width:280px;
	margin-top:12px;
	padding:12px 20px;
	position:absolute;
	z-index:2600;
	display:none;
	background:#612f1d;
	background:rgba(97, 47, 21, 0.92);
	/* ----------------------------- */
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
	/* ----------------------------- */
	-moz-box-shadow: 2px 2px 2px #2f1005;
	-webkit-box-shadow: 2px 2px 2px #2f1005;
	box-shadow: 2px 2px 2px #2f1005;
}
/* --------------------------------------------------------------------------- */
form#login-form{
	width:280px;
	margin-bottom:10px;
}
form#login-form fieldset{
	border:1px solid #cf8063;
}
form#login-form legend{
	padding:10px 10px 5px;
	margin-left:18px;
	text-align:center;
	font:22px 'ColaborateLightRegular';
	color:#cf8063;
	line-height:18px;
}
form#login-form input{
	display:block;
	width:220px;
	margin:5px auto;
	padding:5px;
	color:#fff;
	text-align:center;
	border:1px solid #cf8063;
	background:#612f1d;
	font:14px 'OlneyLight';
}

form#login-form .err_msg{
	font-size:14px;
	color:#FF0033;
	text-align:center;
}

form#login-form input#submit{
	width:232px;
	background:#ff3600;
	font:16px 'OlneyLight';
	cursor:pointer;
}
/* --------------------------------------------------------------------------- */
#login-box p{
	margin:0 10px;
	font-size:13px;
	display:inline-block;
}
#login-box p a{
	text-decoration:none;
}
#login-box p a:link,
#login-box p a:visited{
	color:#cf8063;
}
#login-box p a:hover{
	color:#ff3600;
}

#login-box p.float-left{
	float:left;
}
#login-box p.float-right{
	float:right;
}
/* --------------------------------------------------------------------------- */
/* ------------------------ Log Out / Profile Edit -------------------------- */
/* --------------------------------------------------------------------------- */
#logout-n-profileEdit{
	height:36px;
	position: absolute;
	top:6px;
	right:40px; /* Adjust right to align to main menu */
}
#logout-n-profileEdit p.user-name{
	float:right;
	width:300px;
	padding:9px 6px 0;
	text-align:right;
	overflow:hidden;
	font-size:14px;
}
#logout-n-profileEdit p.buttons{
	float:right;
	padding:8px 0 0;
	width:230px;
	height:28px;
	font-size:15px;
	text-align:center;
	background:url(../images/bg-logout-n-editProfile.png) no-repeat;
	color:#de9200;
}

#logout-n-profileEdit p a{
	
	padding:0 10px;
	text-decoration:none;
}

/* --------------------------------------------------------------------------- */
/* --------------------------------- Content --------------------------------- */
/* --------------------------------------------------------------------------- */
#content{
	position:relative;
	margin:0px auto 0;
	padding-top:20px;
	width:940px;
	padding-bottom:220px;   /* Height of the footer element */
	z-index:500;
	overflow:hidden;
}
/* --------------------------------------------------------------------------- */
#content #two-column-left{
	width:460px;
	float:left;
}
#content #two-column-right{
	width:460px;
	float:right;
}
/* --------------------------------------------------------------------------- */
/* ------------------------------ Line Divider ------------------------------- */
/* --------------------------------------------------------------------------- */
#line-divier{
	width:940px;
	height:2px;
	background:url(../images/product-line-divider.jpg) no-repeat;
}
/* --------------------------------------------------------------------------- */
/* -------------------------------- Footer ----------------------------------- */
/* --------------------------------------------------------------------------- */
footer{
	width:100%;
	height:220px;  /* Height of the footer element */
	position:absolute;
	bottom:0;
	left:0;
	background:url(../images/bg-footer.png) no-repeat bottom center;
}
footer p{
	width:480px;
	margin:185px auto 0;
	padding:0;
	text-align:center;
	color:#ffeabf;
	font:12px Verdana, Geneva, sans-serif;
}
/* --------------------------------------------------------------------------- */
/* ----------------------------- Text Formating ------------------------------ */
/* --------------------------------------------------------------------------- */
a:link, 
a:visited{
	color:#962b04;
}
a:hover{
	color:#ff3600;
}
/* --------------------------------------------------------------------------- */
h1{
	position:relative;
	font:lighter 38px 'ColaborateLightRegular';
	letter-spacing:-1px;
	height:35px;
	padding-bottom:10px;
	color:#612f1d;
	text-shadow:1px 1px 2px #999;
	z-index:200;
}
h2{
	font:lighter 38px 'ColaborateLightRegular';
	letter-spacing:-1px;
	padding-bottom:5px;
	color:#c3850e;
	text-shadow:1px 1px 2px #ccc;
}
h3{
	font:26px 'ColaborateLightRegular';
	letter-spacing:-1px;
	padding-bottom:5px;
	color:#962b04;
}
/* --------------------------------------------------------------------------- */
.justify{
	text-align:justify;
}
.center{
	text-align: center;
}
/* --------------------------------------------------------------------------- */
/* ------------ Text Style 01 - Register Page / Reset Password --------------- */
/* --------------------------------------------------------------------------- */
form#style-01{
	width:550px;
	margin:20px auto 0;
}
form#style-01 fieldset{
	padding:10px 20px 20px;
	margin-bottom:30px;
	border:1px solid #ae7c1b;
}
form#style-01 legend{
	color:#ba8827;
	font-size:18px;
	padding:0 5px;
	text-shadow:1px 1px 1px #ccc;
}
form#style-01 label{
	width:140px;
	padding:5px;
	display:inline-block;
	text-align:right;
	font-size:13px;
}
form#style-01 input.textbox{
	width:320px;
	font:14px 'OlneyLight';
	color:#ae7c1b;
}
form#style-01 span.disable{
	color:#999;
}
form#style-01 select{
	width:325px;
	font:14px 'OlneyLight';
	color:#ae7c1b;
}
form#style-01 p.special-note{
	font-size:14px;
	text-align:center;
	padding:4px;
	margin:10px 20px 0;
	color:#fff;
	background-color:#ae7c1b;
}
form#style-01 p.special-note:before{
	content:"*"
}

form#style-01 p.center{
	text-align:center;
	margin-top:-10px;
}

form#style-01 input.button{
	padding:5px;
	width:180px;
}
form#style-01 .err_msg{
	margin:0 25px 5px 155px;
	display:block;
	font-size:14px;
	color:#FF0033;
}
form#style-01 #subject_checkbox{
	width:320px;
	padding-left:160px;
	margin-top:-22px;
	display:block;
}
/* --------------------------------------------------------------------------- */
/* ------------- Text Style 02 Edit Profuile - Change Password --------------- */
/* --------------------------------------------------------------------------- */
form#style-02{
	width:550px;
	margin:20px auto 0;
}
form#style-02 fieldset{
	padding:10px 20px 20px;
	margin-bottom:30px;
	border:1px solid #ae7c1b;
}
form#style-02 legend{
	color:#ba8827;
	font-size:18px;
	padding:0 5px;
	text-shadow:1px 1px 1px #ccc;
}
form#style-02 label{
	width:140px;
	padding:5px;
	display:inline-block;
	text-align:right;
	font-size:13px;
}
form#style-02 input.textbox{
	width:200px;
	font:14px 'OlneyLight';
	color:#ae7c1b;
}
form#style-02 p.center{
	text-align:center;
	margin-top:-10px;
}
form#style-02 input.button{
	padding:5px;
	width:180px;
}
form#style-02 .err_msg{
	margin:0 25px 5px 155px;
	display:block;
	font-size:14px;
	color:#FF0033;
}
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
