@charset "utf-8";
/* CSS Document */

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #555;
}

/* Admin Bar */

#admin_bar {
	position: relative;
	width: 100%;
	background: url(../images/admin_bar.jpg) left top repeat-x;
	height: 46px;
	float: left;
	z-index: 2;
}

#admin_bar_inner {
	width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}

#admin_bar_inner a {
	float: left;
	margin: 11px 0 0 8px;
	opacity: 0.8;
	-webkit-transition: opacity linear 0.3s;
    -moz-transition: opacity linear 0.3s;
    -o-transition: opacity linear 0.3s;
    -ms-transition: opacity linear 0.3s;
    transition: opacity linear 0.3s;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
	color: #FFF;
}

#admin_bar_inner a:hover {
	opacity: 1.0;
}

#admin_bar_inner a.profile {
	background: url(../images/profile.jpg) left top no-repeat;
	padding-left: 30px;
	height: 23px;
	opacity: 1;
	float: right;
}

#admin_bar_inner a.logout {
	background: url(../images/logout.png) left top no-repeat;
	padding-left: 30px;
	height: 20px;
	opacity: 0.6;
	float: right;
}

#admin_bar_inner a:hover.logout {
	background: url(../images/logout.png) left top no-repeat;
	padding-left: 30px;
	height: 20px;
	opacity: 1;
	float: right;
}

#admin_bar_inner a.top_menu {
	float: left;
	text-transform: uppercase;
	margin: 11px 25px 0 0;
}

#admin_bar_inner a.top_menu_on {
	float: left;
	text-transform: uppercase;
	margin: 11px 25px 0 0;
	opacity: 1.0;
	text-shadow: 0px 0px 5px #842b2b;
}


/* Logo Bar */

#logo_bar {
	position: relative;
	width: 100%;
	float: left;
	z-index: 2;
	background: #FFF;
}

#logo_bar_inner {
	width: 980px;
	margin: 0 auto;
}

#logo_bar_inner a {
	margin: 10px 20px 15px 20px;
	float: left;
}

/* Home Background */

#home_bg {
	position: relative;
	width: 100%;
	float: left;
	z-index: 1;
}

#bg {
	position: fixed; 
	top: -50%; 
	left: -50%; 
	width: 200%; 
	height: 200%;
}

#bg img {
	position: absolute; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	margin: auto; 
	min-width: 50%;
	min-height: 50%;
}

#home_content {
	position: relative;
	width: 980px;
	margin: 0 auto;
	z-index: 2;
}

#login_box {
	position: relative;
	width: 300px;
	background: #FFF;
	border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 35px 25px;
	box-shadow: 2px 2px 5px #000;
	margin: 60px 0 0 60px;
	font-size: 14px;
	color: #555;
	float: left;
}

#login_box input.textfield {
	width: 100%;
	padding: 10px;
	border: #ddd solid 1px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	margin-bottom: 20px;
	font-size: 14px;
}

#login_box input.login_button {
	padding: 5px 20px;
	background: #333;
	font-size: 14px;
	color: #ddd;
	border: #999 solid 1px;
	cursor: pointer;
}

#login_box input.login_button:hover {
	color: #FFF;
	background: #444;
}

#login_box a {
	color: #ff6702;
	text-decoration: none;
}

#login_box a:hover {
	text-decoration: underline;
}

#tagline {
	position: relative;
	color: #FFF;
	opacity: 0.35;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 29px;
	font-weight: bold;
	float: right;
	right: 0;
	margin: 60px 0 0 20px;
	text-shadow: 2px 2px 1px #000;
}

#tagline span.tagline_highlight{
	font-size: 48px;
}

#tagline span.tagline_title{
	font-size: 72px;
	line-height: 72px;
}

/* Button Bar */

#button_bar {
 position: relative;
 width: 100%;
 float: left;
 box-shadow: inset 0px -3px 5px 3px #dddddd;
 background: #fff;
    background: -moz-linear-gradient(top, #ffffff 20%, #f3f3f3 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#ffffff), color-stop(80%,#f3f3f3));
    background: -webkit-linear-gradient(top, #ffffff 20%,#f3f3f3 80%);
    background: -o-linear-gradient(top, #ffffff 20%,#f3f3f3 80%);
    background: -ms-linear-gradient(top, #ffffff 20%,#f3f3f3 80%);
    background: linear-gradient(to bottom, #ffffff 20%,#f3f3f3 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 );
}

#button_bar_line {
 position: relative;
 width: 100%;
 height: 2px;
 float: left;
 border-top: #ddd solid 1px;
}

#button_bar_inner {
 width: 986px;
 margin: 0 auto;
}

#button_bar_inner .button_wrap {
 width: 100%;
 float: left;
 padding: 12px 20px;
}

#button_bar_inner .button_wrap div {
 float: left;
 margin: 3px;
}

#button_bar_inner .button_wrap div a {
 display: table-cell;
 font-size: 12px;
 font-weight: bold;
 color: #eee;
 text-decoration: none;
 padding: 0 5px;
 text-align: center;
 vertical-align: middle;
 width: 99px;
 height: 60px;
 text-transform: capitalize;
 border-radius: 5px;
 border: #333 solid 1px;
 box-shadow: inset 0px -2px 2px 1px #000000;
 background: #000;
    background: -moz-linear-gradient(top, #333333 20%, #000000 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#333333), color-stop(80%,#000000));
    background: -webkit-linear-gradient(top, #333333 20%,#000000 80%);
    background: -o-linear-gradient(top, #333333 20%,#000000 80%);
    background: -ms-linear-gradient(top, #333333 20%,#000000 80%);
    background: linear-gradient(to bottom, #333333 20%,#000000 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#000000',GradientType=0 );
}

#button_bar_inner .button_wrap div a:hover {
 color: #FFF;
 box-shadow: inset 0px -2px 2px 1px #000000;
 background: #222;
    background: -moz-linear-gradient(top, #444444 20%, #222222 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#444444), color-stop(80%,#222222));
    background: -webkit-linear-gradient(top, #444444 20%,#222222 80%);
    background: -o-linear-gradient(top, #444444 20%,#222222 80%);
    background: -ms-linear-gradient(top, #444444 20%,#222222 80%);
    background: linear-gradient(to bottom, #444444 20%,#222222 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

/* Content */

#content {
	position: relative;
	width: 100%;
	float: left;
	margin-bottom:50px;
}

#content_inner {
	width: 980px;
	margin: 0 auto;
	padding: 40px 20px;
}

#add_document {
	width: 100%;
	margin-bottom: 30px;
	float: left;
}

#add_document a, #content_title a, #content_table input[type=button], #content_table input[type=submit], #content_table input[type=reset] {
	float: left;
	color: #333;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 15px;
	text-transform: uppercase;
	border-radius: 5px;
	border: #CCC solid 1px;
	box-shadow: inset 0px -2px 2px 1px #d7d7d7;
	background: #f7f7f7;
    background: -moz-linear-gradient(top, #f7f7f7 20%, #eeeeee 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#f7f7f7), color-stop(80%,#eee));
    background: -webkit-linear-gradient(top, #f7f7f7 20%,#eeeeee 80%);
    background: -o-linear-gradient(top, #f7f7f7 20%,#eeeeee 80%);
    background: -ms-linear-gradient(top, #f7f7f7 20%,#eeeeee 80%);
    background: linear-gradient(to bottom, #f7f7f7 20%,#eeeeee 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#eeeeee',GradientType=0 );
}

#add_document a:hover, #content_title a:hover, #content_table input[type=button]:hover, #content_table input[type=submit]:hover {
	box-shadow: inset 0px -2px 2px 1px #dddddd;
	background: #fff;
    background: -moz-linear-gradient(top, #ffffff 20%, #f3f3f3 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#ffffff), color-stop(80%,#f3f3f3));
    background: -webkit-linear-gradient(top, #ffffff 20%,#f3f3f3 80%);
    background: -o-linear-gradient(top, #ffffff 20%,#f3f3f3 80%);
    background: -ms-linear-gradient(top, #ffffff 20%,#f3f3f3 80%);
    background: linear-gradient(to bottom, #ffffff 20%,#f3f3f3 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 );
}

#content_title a {
	float: right;
}

#content_title {
	width: 100%;
	font-size: 16px;
	color: #333;
	text-transform: uppercase;
	font-weight: bold;
	float: left;
	margin-bottom: 25px;
}

#content_table {
	width: 100%;
	clear: both;
}

#content_table input[type=text], input[type=password], input[type=email], input[type=file], #content_table input[type=date], #content_table select, #content_table textarea {
	width: 350px;
	border-radius: 5px;
	border: #CCC solid 1px;
	padding: 8px;
	float: left;
	margin: 0 10px 0 0;
}

#content_table input[type=button], #content_table input[type=submit], #content_table input[type=reset]  {
	text-transform: capitalize;
	margin-right: 10px;
	font-weight: normal;
	cursor: pointer;
}

#content_table label {
	float: left;
	margin: 0 20px 0 0;
}

#content_table input.add_more {
	float: left;
	color: #FFF;
	font-size: 13px;
	text-decoration: none;
	padding: 8px 15px;
	text-transform: uppercase;
	border-radius: 5px;
	border: #333 solid 1px;
	box-shadow: inset 0px -2px 2px 1px #000000;
	background: #000;
    background: -moz-linear-gradient(top, #333333 20%, #000000 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#333333), color-stop(80%,#000000));
    background: -webkit-linear-gradient(top, #333333 20%,#000000 80%);
    background: -o-linear-gradient(top, #333333 20%,#000000 80%);
    background: -ms-linear-gradient(top, #333333 20%,#000000 80%);
    background: linear-gradient(to bottom, #333333 20%,#000000 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#000000',GradientType=0 );
}

#content_table input.add_more:hover {
	box-shadow: inset 0px -2px 2px 1px #000000;
	background: #222;
    background: -moz-linear-gradient(top, #444444 20%, #222222 80%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#444444), color-stop(80%,#222222));
    background: -webkit-linear-gradient(top, #444444 20%,#222222 80%);
    background: -o-linear-gradient(top, #444444 20%,#222222 80%);
    background: -ms-linear-gradient(top, #444444 20%,#222222 80%);
    background: linear-gradient(to bottom, #444444 20%,#222222 80%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#content_table .content_form {
	width: 100%;
	float: left;
	font-size: 14px;
	color: #333;
	margin-bottom: 15px;
}

#content_table .content_form span {
	width: 120px;
	float: left;
	line-height: 32px;
}

#content_table .content_form span.create_user {
	width: 150px;
}

#content_table .content_form span.required {
	width: auto;
	color: #FFF;
	background: #ff8002;
	padding: 0 10px;
}

#content_table table {
	margin-top: 25px;
}

#content_table td {
	padding: 10px;
	color: #333;
	font-size: 14px;
}

#content_table td.table_subject {
	color: #FFF;
}

#content_table td .icon {
	position: relative;
	margin: 0 auto;
	width: 20px;
}

#content_table td .icon_admin {
	position: relative;
	margin: 0 auto;
	width: 120px;
}

#content_table td a {
	width: 20px;
	height: 20px;
	text-decoration: none;
	/*float: left;*/
	display: inline-table;
	margin: 0 0px;
}

#content_table td a.view {
	background: transparent url(../images/view.png) left top no-repeat;
}

#content_table td a.view:hover {
	background: transparent url(../images/view_ro.png) left top no-repeat;
}

#content_table td a.download {
	background: transparent url(../images/download.png) left top no-repeat;
}

#content_table td a.download:hover {
	background: transparent url(../images/download_ro.png) left top no-repeat;
}

#content_table td a.pdf {
	background: transparent url(../images/pdf.png) left top no-repeat;
}

#content_table td a.pdf:hover {
	background: transparent url(../images/pdf_ro.png) left top no-repeat;
}

#content_table td a.doc {
	background: transparent url(../images/doc.png) left top no-repeat;
}

#content_table td a.doc:hover {
	background: transparent url(../images/doc_ro.png) left top no-repeat;
}

#content_table td a.xls {
	background: transparent url(../images/xls.png) left top no-repeat;
}

#content_table td a.xls:hover {
	background: transparent url(../images/xls_ro.png) left top no-repeat;
}

#content_table td a.update {
	background: transparent url(../images/update.png) left top no-repeat;
}

#content_table td a.update:hover {
	background: transparent url(../images/update_ro.png) left top no-repeat;
}

#content_table td a.edit {
	background: transparent url(../images/edit.png) left top no-repeat;
}

#content_table td a.edit:hover {
	background: transparent url(../images/edit_ro.png) left top no-repeat;
}

#content_table td a.add {
	background: transparent url(../images/add.png) left top no-repeat;
}

#content_table td a.add:hover {
	background: transparent url(../images/add_ro.png) left top no-repeat;
}

#content_table td a.delete {
	background: transparent url(../images/delete.png) left top no-repeat;
}

#content_table td a.delete:hover {
	background: transparent url(../images/delete_ro.png) left top no-repeat;
}

#content_table td a.move {
	background: transparent url(../images/move.png) left top no-repeat;
}

#content_table td a.move:hover {
	background: transparent url(../images/move_ro.png) left top no-repeat;
}

/* Paginator */

#content_pages {
	width: ;
	float: right;
	color: #666;
	font-size: 14px;
	text-align: right;
	margin: 30px 0;
}

#content_pages a {
	text-decoration: none;
	color: #666;
}

#content_pages a:hover, #content_pages a.on_page {
	color: #000;
}

/* Footer */

#footer {
	position: fixed;
	width: 100%;
	height: 85px;
	background: url(../images/footer_bg.jpg) left top repeat-x;
	z-index: 2;
	bottom: 0;
	clear: both;
	box-shadow: inset 0px -2px 5px 3px #ddd;
	background: #f5f5f5;
}

#footer_inner {
	width: 980px;
	margin: 0 auto;
}

#footer_inner .copyright {
	width: 100%;
	padding: 20px;
	font-size: 12px;
	line-height: 20px;
}

#loginerror-message {
	color: #ff0000;
	text-align: center;
	padding-bottom:5px;
	
}

/* Cache Overlay */
.cache_overlay{
	background: #000;
	opacity: 0.7; 
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px; 
	height: 100%;
	z-index: 9999;
	display: block;
	font-family: Arial;
}

.cache_wrapper{
	width: auto;
	margin: 20% auto 10px auto; 
	position: relative;
	z-index: 99;
	text-align: center;
	color: #999;
	font-size: 11px;
}

.cache_loader{
	width: 16px;
	height: 16px;
	background: url(/images/ajax-loader.gif) no-repeat; 
	margin:0px auto 10px auto;
}

.hide {
	display:none;
}

/* Checkbox */
label {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

input[type=checkbox].css-checkbox {
	position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height:1px; 
    width:1px; 
    margin:-1px; 
    padding:0;
    border:0;
}

/*specific classes related to Checkbox skins*/
.web-two-style{background-image:url(/images/checkboxes/web-two-style.png);}

input[type=checkbox].css-checkbox.lrg + label.css-label.lrg {
	padding-left:22px;
    height:20px; 
	display:inline-block;
	line-height:20px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:15px;
	vertical-align:middle;
    cursor:pointer;
}

input[type=checkbox].css-checkbox.lrg:checked + label.css-label.lrg{
    background-position: 0 -20px;
}

/*Created or Edit message row*/
#message_row{
	background-color: #37D917;
	font-weight: bold;
	color: #ffffff;
	padding: 10px;
	margin-bottom: 15px;
}

.error h2.error_header{
	margin-bottom: 35px;
}

.error p.error_desc{
	color: #333;
	font-size: 16px;
	margin-bottom: 15px;
}

.error ul.error_point{
	color: #333;
	font-size: 16px;
	line-height: 30px;
	list-style-position: inside;
}
