html {
    position: relative;
    min-height: 100%;
}

body {
	margin: 0 0 25px;
    font-family : Arial, Sans-Serif;
	background-color: #F0F0F0;
	background: -webkit-linear-gradient(top, #D3D3D3, #F0F0F0) fixed;
	background:    -moz-linear-gradient(top, #D3D3D3, #F0F0F0) fixed;
	background:     -ms-linear-gradient(top, #D3D3D3, #F0F0F0) fixed;
	background:      -o-linear-gradient(top, #D3D3D3, #F0F0F0) fixed;
	background:         linear-gradient(top, #D3D3D3, #F0F0F0) fixed;
}

img {
	border: none;
}

table {
	font-size: 13px;
}

#container {
	width: 1140px;
	margin: auto;
}

h1 {
	font-size: 18px;
}

h4 {
	font-size: 15px;
}

#header_background {
	background-color: #0C5DA5;
	width: 100%;
	height: 84px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

#header {
	margin: auto;
	background-color: transparent;
}

#header_user_actions {
	/* margin-top: 5px;
	margin-bottom: 5px; */
	float: right;
	font-size: 13px;
	height: 28px;
	min-width: 150px;
	text-align: right;
}

.header_login {
	
}

#login_toggle {
	margin-top: 5px;
}

.header_login_form {
	text-align: left !important;
	display: none;
	position: absolute;
	margin-left: -62px;
	z-index: 10;
	background-color: #0C5DA5;
	padding: 5px;
	border: 1px solid black;
	text-align: center;
}

.header_login_form form {
	color: white;
	/* display: inline; */
}

.header_login_form label[for='UserUsername'],
.header_login_form label[for='UserPassword'] {
	float: left !important;
	width: 50px !important;
	margin-top: 5px !important;
}

.header_login_form #UserUsername {
	width: 140px !important;
	margin: 2px 10px 2px 0px !important;
}

.header_login_form #UserPassword {
	width: 140px !important;
	margin: 2px 10px 2px 0px !important;
}

.header_login_form label[for='remember_me'] {
	float: none !important;
	width: auto !important;
}

.header_login_form div.submit {
	float: left !important;
}

.remember_div {
	margin-top: 3px;
	margin-bottom: 3px;
}

.header_login_form input[type='submit'] {
	height: 24px;
	padding: 3px 6px;
}

#forgot_link {
	float: right;
	margin-top: 3px;
	margin-left: 5px;
	color: #AED9FF;
}

#header_user_info {
	color: white;
	text-align: right;
	margin-top: 15px;
}

#user_info_name {
	font-weight: bold;
}

#user_info_role {
	color: #F0F0F0;
	background-color: #0C5DA5;
	border: 1px solid white;
	direction: rtl;
}

#user_info_role option {
	color: white;
}

#user_info_type {
	margin-top: 3px;
}

#register_link {
	font-size: 18px;
	margin-top: 8px;
}

#register_type_list {
	display: none;
	position: absolute;
	margin-left: 24px;
	width: 125px;
	z-index: 10;
	background-color: white;
	border: 1px solid black;
	text-align: center;
}

#register_type_list a {
	display: block;
	padding: 5px 10px;
}

#logout_link {
	color: #AED9FF;
	float: right;
}

#header_banner {
	
}

#header_banner a:hover {
	background-color: transparent;
}

#header_nav_links {
	margin-top: 10px;
	padding-bottom: 6px;
}

#header_nav_links a {
	color: black;
	padding: 6px 12px 6px 12px;
	text-decoration: none;
}

#header_nav_links a:hover, #header_nav_links a.active {
	background-color: #3A3A3A;
	background: -webkit-linear-gradient(top, #777777, black);
	background:    -moz-linear-gradient(top, #777777, black);
	background:     -ms-linear-gradient(top, #777777, black);
	background:      -o-linear-gradient(top, #777777, black);
	background:         linear-gradient(top, #777777, black);
	color: white;
}

#header_nav_links a:last-child {
	float: right;
	margin-top: -6px;
}

#content {
	height: 100%;
	padding: 20px;
	background-color: white;
}

a:not(.button) {
	color: #0C5DA5;
	padding: 2px 3px;
}

a:not(.button):hover, #content a:not(.button):focus {
	background-color: #0C5DA5;
	color: #AED9FF;
}

.crumbs {
	margin: -15px 0px 10px -15px;
	font-size: 13px;
}

.sort_headers a {
	display: block;
}

.sort_headers th,
.filter_headers th {
	background-color: #EDEDED;
}

.sort_headers .asc,
.sort_headers .desc {
	background-color: #FFD6AF;

}

button, input[type=submit], .button {
	background-color: #FFD6AF;
	background: -webkit-linear-gradient(top, #FFD6AF, #FAA61A);
	background:    -moz-linear-gradient(top, #FFD6AF, #FAA61A);
	background:     -ms-linear-gradient(top, #FFD6AF, #FAA61A);
	background:      -o-linear-gradient(top, #FFD6AF, #FAA61A);
	background:         linear-gradient(top, #FFD6AF, #FAA61A);
	color: #3A3A3A;
	border: 1px solid #666666;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

button:hover, button:focus,
input[type=submit]:hover, input[type=submit]:focus,
.button:hover, .button:focus {
	background-color: #FFD6AF;
	background: -webkit-linear-gradient(top, #FFD6AF, #FFD6AF);
	background:    -moz-linear-gradient(top, #FFD6AF, #FFD6AF);
	background:     -ms-linear-gradient(top, #FFD6AF, #FFD6AF);
	background:      -o-linear-gradient(top, #FFD6AF, #FFD6AF);
	background:         linear-gradient(top, #FFD6AF, #FFD6AF);
}

button:active,
input[type=submit]:active,
.button:active {
	background-color: #FAA61A;
	background: -webkit-linear-gradient(top, #FAA61A, #FAA61A);
	background:    -moz-linear-gradient(top, #FAA61A, #FAA61A);
	background:     -ms-linear-gradient(top, #FAA61A, #FAA61A);
	background:      -o-linear-gradient(top, #FAA61A, #FAA61A);
	background:         linear-gradient(top, #FAA61A, #FAA61A);
}

button[disabled='disabled'],
input[type=submit][disabled='disabled'] {
	color: #787878 !important;
	background-color: #DEDEDE !important;
	cursor: default !important;
}

.hidden {
	display: none !important;
}

.success {
	background-color: #AED9FF;
	display: inline-block;
	padding: 3px 5px;
}

.error {
	background-color: #FFD6AF;
	padding: 3px 5px;
}

.error:not(.input) {
	display: inline-block;
}

.even {
	background-color: #EDEDED;
}

.paginate {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

.paginate .numbers {
	display: inline;
	margin-right: 10px;
	margin-left: 10px;
}

.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


#footer {
	position: absolute;
    left: 0;
    bottom: 0;
    height: 25px;
    width: 100%;
	
	font-size: 13px;
	color: white;
	text-align: center;
	padding: 10px 0px 0px;
	background-color: #3A3A3A;
}

#footer_content {
	display: inline-block;
}

#footer a {
	padding: 0px;
	color: white;
}

#footer a:hover {
	background-color: transparent;
}

#footer img {
	vertical-align: top;
	margin-top: -4px;
}


.hover_actions {
	position: absolute;
	width: 16px;
	height: 18px;
	z-index: 2;
	margin: -18px 0px 0px -20px;
	border: 1px outset gray;
	cursor: default;
	background: url('icons/right.png') no-repeat center;
}

.hover_actions:hover {
	border-style: inset;
}

.hover_actions_inner {
	position: absolute;
	z-index: 3;
	border: 1px solid black;
	padding: 1px;
	margin: -1px 2px 0px 16px;
	background-color: white;
}


/*Opera Fix*/
body:before {
	content: "";
	height: 100%;
	float: left;
	width: 0;
	margin-top: -32767px;
}