/* --------------------GLOBAL-------------------- */

#container {
	width: 100%;
	min-height: 100%;
}

html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	font-family: Helvetica, "Myriad Pro", sans-serif;
	font-size: 12px;
}



/* --------------------HEADER-------------------- */

#header_wrapper {
	position: fixed;
	width: 100%;
	height: 99px;
	margin: 0px;
	background: url(/application/images/header_bg.png) repeat-x;
	z-index: 2;
}

#header_col1 {
	float: left;
	width: 25%;
	height: 99px;
}

#header_col2 {
	float: left;
	width: 75%;
	height: 99px;
}

#header_company_name {
	margin: 50px 20px 0px 0px;
	text-align: right;
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
}

#header_welcome {
	margin: 0px 20px 0px 0px;
	width: auto;
	height: 25px;
	float: right;
	text-align: center;
	padding: 6px 10px 0px 10px;
	font-weight: bold;
	font-size: 13px;
	color: #FFF;
	background: #074672;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-right: solid 1px #CCC;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	box-shadow: 0px 1px 15px #000;
	-webkit-box-shadow: 0px 1px 15px #000;
	-moz-box-shadow: 0px 1px 15px #000;
}

#header_lowerbg {
	position: fixed;
	top: 99px;
	width: 100%;
	height: 12px;
	background: url(/application/images/header_bg_lowerhalf.png) repeat-x;
}

.header_link {
	text-decoration: none;
	color: #FC0;
	font-size: 13px;
}



/* --------------------NAV-------------------- */
#nav_wrapper {
	position: fixed;
	top: 100px;
	left: 0px;
	bottom: 0px;
	width: 200px;
	border-right: solid 2px #CCC;
	background: #F4F4F4;
	box-shadow: 0px 5px 10px #CCC;
	-webkit-box-shadow: 0px 5px 10px #CCC;
	-moz-box-shadow: 0px 5px 10px #CCC;
	z-index: 1;
}

#nav_dashboard {
	text-align: center;
	margin: 15px 0px 5px 0px;
}

.menu_break {
	width: 180px;
	color: #444444;
	background: #F4F4F4;
	border-bottom: 2px dotted #444444;
	padding: 5px;
}

div.menu_section {
	width: 190px;
	border: 1px solid #CCCCCC;
	border-bottom: none;
	margin:5px 5px 10px 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.menu a {
	color:#00F;
	text-decoration:none;
	background-color: #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	padding: 3px;
	padding-left: 5px;
	font-size: 13px;
	display: block;
}

.menu a:hover {
	color:#F00;
	background-color: #F5F5F5;
}

.menu_header {
	color: #FFFFFF;
	background-color: #436088;
	font-weight: bold;
	font-size: 13px;
	padding: 5px;
	padding-left: 8px; 
	border-bottom:3px solid #A8BFD7;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	
}

img.nav {
	vertical-align: middle;
	margin-right: 5px;
}



/* --------------------CONTENT-------------------- */
#content_wrapper {
	position: absolute;
	max-height: 100%;
	width: 80%;
	top: 100px;
	left: 225px;
	bottom: 0px;
	z-index: 0;
}

div.content_block_header_outer {
	position: relative;
	height: 40px;
	width: 40%;
	background: url(/application/images/data_header.png) repeat-x;
	border: 1px solid #074672;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

div.content_block_header_inner {
	position: absolute;
	height: 20px;
	top: 50%;
	margin: -10px 0px 0px 10px;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
}

div.content_block_data_outer {
	width: 40%;
	border: 1px solid #CCC;
}

div.content_block_data_inner {
	margin: 10px;
}

.span_block {
	margin-bottom: 10px;
}

.span_header {
	font-size: 14px;
	font-weight: bold;
}

.span_data {
	font-size: 14px;
}



/* --------------------FOOTER-------------------- */
#footer {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 40px;
	background: #444444;
	z-index: 3;
}

#footer_text {
	text-align: center;
	color: #CCC;
	margin-top: 12px;
}

.form_title {
	font-size:15px;
	font-weight:bold;
	padding:5px;
	margin:5px 0px 5px 0px;
}

.form_data {
	font-size:15px;
	padding:5px;
	margin:5px 0px 5px 0px;
}

.form_input {
	background:#F7F7F7;
	padding:5px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	border:solid 1px #ddd;
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	font-size:15px;
	width:200px;
	margin:5px 0px 5px 0px;
}

.form {
	border:1px solid #CCC;
	font-size:12px;
}

.form_error {
	background: #D90000;
	color: #FFFFFF;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: 0px 1px 15px #660000;
	box-sizing:content-box;
	-moz-box-sizing: content-box;
	-webkit-box-shadow: 0px 1px 15px #660000;
	-moz-box-shadow: 0px 1px 15px #660000;	
}

.form_error_header {
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px dotted #660000;
	font-size: 16px;
	font-weight: bold;
}

.form_error_text {
	font-weight: bold;
	margin-bottom: 10px;
}

.form_error_error {
	color: #FFFFFF;
	font-weight: bold;
	font-style:italic;
}

.form_error_li {
	color: #660000;
}

.form_success {
	background: #00B200;
	color: #FFFFFF;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 10px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: 0px 1px 15px #00FF00;
	-webkit-box-shadow: 0px 1px 15px #00FF00;
	-moz-box-shadow: 0px 1px 15px #00FF00;	
}

.form_success_header {
	font-size: 16px;
	font-weight: bold;
}

legend {
	font-size:large
}

fieldset {
	margin:5px;
	padding:10px;
	border:1px solid #CCC;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px
}

.fieldset_inner_div {
	margin:5px 0px 5px 0px;
	font-size:12px
}

#title {
	color:#FFF;
	background-color:#F4F4F4;
	font-weight:bold;
	font-size:30px;
}

#nav_row {
	border-right:2px solid #A8BFD7;
	width:200px;
}

#container_row {
	padding-left:10px;
	width:100%;
}

h1.page_title {
	font-style: italic;
	color: #688BC3;
}

.nav_bar {
	top:10px;
	width:100%;
	height:10px;
	overflow:hidden;
	margin:0px;
	background-color:#A8BFD7;
}


/* BEGIN - TABLE ROW COLORS */
table.sortable tr {
	background: #E8EFF9;
	height: 40px;
	text-align: center;
}

table.sortable tr:hover {
	background: #BFD2EE;
}

table.sortable th {
	text-align: center;
	background: url(/application/images/data_header.png);
	height: 40px;
	font-size: 15px;
	font-weight: bold;
	color: #FFF;
}

table.sortable th.click {
	cursor: pointer;
}

table.sortable td {
	border-bottom: 1px solid #FFF;
}

.tablelisting{
	background-color:#CCC;
	border-spacing:1px;
	font-size:13px;
}
.tablelisting tr{
	background-color: #F7F7F7;
}
.tablelisting tr.even{
	background-color: #ffffff;
}

.tablelisting th {
	text-align: center;
	background-color: #E0EFEF;
}

.tablelisting td {
	padding:5px;
}

.tablelisting a {
	color:#00F;
	text-decoration: none;
	border-bottom: none;
}
.tablelisting a:hover {
	color:#F00; 
}

#tables {
	position:absolute;
	top:100px;
}

.form {
	font-size: 12px;
	color: #000000;
	border: 1px solid #CCCCCC;
}

.submit-button {
	background-color: #505050;
	background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -webkit-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -ms-linear-gradient(bottom, #505050 0%, #707070 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #505050), color-stop(1, #707070));
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	border: 2px solid #808080;
	color: #FFF;
	text-align: center;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	padding:5px 15px 5px 15px;
	width: auto;
	cursor:pointer;
	text-decoration:none
}
.submit-button:hover {
	background-color: #606060;
	background-image: linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -o-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -moz-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -webkit-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -ms-linear-gradient(top, #606060 0%, #808080 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #606060), color-stop(1, #808080));
	background-position: center bottom;
	text-decoration:none
}

/* --------------------ACTIVITY LOG-------------------- */

.activity_updated {
/*	width:400px; */
	padding:5px;
	background-color:#E6E6E6;
	border:solid 1px #999;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-webkit-box-shadow:0px 2px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 2px 5px rgba(0,0,0,0.25);
	box-shadow:0px 2px 5px rgba(0,0,0,0.25);
	margin:10px 10px 10px 10px;
}



/* --------------------LOGIN-------------------- */

.login_window { background:#fff;
	padding:30px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	border:solid 1px #ddd;
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	width:300px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-250px 0 0 -150px;
}

.login_label {
	font-size:15px;
	font-weight:bold;
	width:100%;
	display:block
}

.login_sign_in {
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	
}

.login_input {
	background:#F7F7F7;
	padding:5px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	border:solid 1px #ddd;
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	font-size:15px;
	width:95%;
}

.login_ol {
	padding:0px;
	list-style:none;
}

.login_li {
	padding:5px;
}

.login_forget_password {
	font-size:10px;
}

.login_error {
	font-size:15px;
	color:#F00;
}

.login_hr {
	color: #006699;
	width: 100%;
}


/* --------------------PASSWORD RESET-------------------- */

.reset_window { background:#fff;
	padding:30px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	border:solid 1px #ddd;
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	width:400px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-250px 0 0 -200px;
}

.reset_label {
	font-size:15px;
	font-weight:bold;
	width:100%;
	display:block
}

.reset_submit {
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	
}

.reset_input {
	background:#F7F7F7;
	padding:5px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	border:solid 1px #ddd;
	-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	box-shadow:0px 0px 5px rgba(0,0,0,0.25);
	font-size:15px;
	width:95%;
}

.reset_ol {
	padding:0px;
	list-style:none;
}

.reset_li {
	padding:5px;
}

.reset_error {
	font-size:15px;
	color:#F00;
}

.reset_hr {
	color: #006699;
	width: 100%;
}