html, body {
    background-color: #FFFFFF;
	font-family: Verdana, Helvetica,Arial,sans-serif;
    font-size: 12px;
	font-weight: normal;
	color:#676767;
    margin: 2px 2px 2px 2px;
	height:99%;
}

/* Links */
a:link
{
    color: #676767;
    text-decoration: underline;
}
a:visited
{
    color: #676767;
    text-decoration: underline;
}
a:active
{
    color: #676767;
    text-decoration: underline;
}
a:hover
{
    color: #676767;
    text-decoration: underline;
}

/* Images */
img {
    border-width:0px;
}

/* Main Page Structure */
#container {
	min-height:100%;
	position:relative;
}

#header {
	width: 100%;
	height: 108px;;
	clear:both;
	border-bottom:2px solid #e57f02;
}

#menu {
	width: 100%;
	height: 29px;
	clear:both;
	background-color:#d9d9db;
	margin:0px;
	padding:0px;
}

#content {
	width: 100%;
	padding-bottom:20px;
}

#footer {
	position:absolute;
    bottom:0;
	width: 100%;
	height: 20px;
	clear:both;
	text-align:center;
	border-top:1px solid #e57f02;
	padding-top: 5px;
}

#headerLogo {
	width:50%;
	float:left;
}

#userInfo {
	float:right;
	vertical-align:bottom;
	margin-right:10px;
}

#mainContent {
	width:97%;
	float:left;
	padding-top:10px;
	margin-left:10px;
	text-align:left;
}

#sideMenu {
	float:right;
	border-left:1px solid #e57f02;
	/*margin-right:10px;
	padding-left:10px;*/
}

#endMain { /*Needed to force the footer to the bottom of the page */
	clear:both;
	height:10px;
}

/* Logo */
.alfaLogo {
	border-width:0px;
}

/* Menus */
#nav {
	position: relative;
	height: 29px; 
	margin: 10px 0;
	overflow: visible;
}
#nav li {
	float: left;
	list-style: none;
	margin-left:2px;
}

#nav li.current {
	background: #e57f02 url(img/nav-bg.png) repeat-x 0 0;
	color:#fff;
}

#nav li:hover {
	background: #e57f02 url(img/nav-bg.png) repeat-x 0 0;
	color:#fff;
	z-index: 200;
	position: static; /*prevents IE7 drop-down menu bug (focus on a page element prevents nested menus from disappearing)*/
}

#nav li a {
	position: relative; 
	overflow: hidden;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size:14px;
	color: #e57f02; 
	outline: none;
	text-align: center;
	height: 30px; 
	top: 7px;
	z-index: 10; 
	letter-spacing: 0;
	float: left; 
	display: block;
	margin: auto 10px;
}

#nav li.current a {
	color:#fff;
}

#nav li a:hover {
	color:#fff;
}

#nav li ul {
  list-style: none;
  position: absolute;
  width: 350px;
  background:#d9d9db;
  top: 1px;
  left: -999em;
  margin:0px;
  padding:0px;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
	top:  30px;
	z-index:999;
}

#nav li.current ul li a {
  color: #e57f02; 
}

#nav li.current ul li.current a {
  color:#fff;
}

#nav li li {  
  margin: 0;
  padding: 0;
  width: 350px;
}
		
#nav li li:hover {
  background: #e57f02 url(img/nav-bg.png) repeat-x 0 0;
}

/* Grid tables */
.gridTable {
	border: 1px solid #e57f02;
}

.gridHeader {
	background: #fbc481;
	font-size:12px;
	font-weight:bold;
	height:20px;
	text-align:center;
}

.gridRowOdd {
	background: #d9d9db;
	font-size:12px;
	height:20px;
	cursor:pointer;
}

.gridRowEven {
	background:#fff;
	font-size:12px;
	height:20px;
	cursor:pointer;
}

.gridRowOdd:hover, .gridRowEven:hover{
	background: #fbc481;
}

.sorted {
	background: #e57f02;
	color:#fff;
}

.sorted a {
    color:#fff;
}

.sortable {
	cursor:pointer;
}

.borderedTable {
    border-collapse:collapse;
    border-spacing:0px;
}
.borderedTable td {
    border: 1px solid #e57f02;
}

/* Forms */
form {
}

.formLabel {
	font-weight:bold;
	font-size:12px;
	/*width:45%;*/
	height:20px;
	vertical-align:top;
}

.formValue {
	font-size:12px;	
}

.formButtons {
	text-align:center;
}

/*form input[type="text"], input[type="password"], input[type="file"], select, textarea {
	width:95%;
}*/

input[type="text"], input[type="password"], input[type="file"], select, textarea {
    color:#676767;
	
}

input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus, select:focus, textarea:hover {
	background: #FFC;
	border: 1px solid #fbc481;
}

input[type="file"]{
    background: #FFC;
    border: 1px solid #fbc481;
}

input[type="submit"], input[type="reset"], input[type="button"], button {
	border-width: 1px;
	border-color:#e57f02 #fbc481 #fbc481 #e57f02;
	background: #d9d9db;
	color:#676767;
	font-weight:bold;
	font-size:14px;
}
input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus, button:focus,input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover {
	background: #e57f02 url(img/nav-bg.png);
	color:#fff;
}
hr {
    border-width:0px;
    color:#e57f02;
    background-color:#e57f02;
    height:1px;
}
.required {
	color:#f00;
}

/* Others */
.sectionHeader {
	text-transform: uppercase;
	font-weight:bold;
	font-size:14px;
	color:#e57f02;
	padding-bottom:15px;

}

.sectionSubHeader {
	font-weight:bold;
	font-size:12px;
	color:#e57f02;
	padding-bottom:5px;
}

a.sectionHeaderLink {
    color:#e57f02;
}

.sectionTable {
    border: 1px solid #e57f02;
}
.sectionTableHeader {
    font-weight:bold;
    font-size:12px;
    background-color: #e57f02;
    color:#fff;
}

.errorMsg {
	background: #FDD;
    border: 1px solid #F00;
    display: block;
    font-weight: bold;
    margin: 2px auto 14px;
    padding: 6px 6px 6px 30px;
    text-align: left;
}

.warnMsg {
	background: #FFC;
    border: 1px solid #FC0;
    display: block;
    font-weight: bold;
    margin: 2px auto 14px;
    padding: 6px 6px 6px 30px;
    text-align: left;
}

.successMsg {
	background: #F4FDEF;
    border: 1px solid #ACDFA7;
    display: block;
    font-weight: bold;
    margin: 2px auto 14px;
    padding: 6px 6px 6px 30px;
    text-align: left;
}

.noticeMessage {
    font-weight: bold;
}

.width100 {
    width:100%;
}

/********* MODAL MESSAGE ***************/
.modalDialog_transparentDivs{   
    filter:alpha(opacity=40);   /* Transparency */
    opacity:0.4;    /* Transparency */
    background-color:#AAA;
    z-index:1;
    position:absolute; /* Always needed */
}
.modalDialog_contentDiv{
    border:3px solid #000;  
    padding:2px;
    z-index:100;/* Always needed    */
    position:absolute;  /* Always needed    */
    background-color:#FFF;  /* White background color for the message */
}
.modalDialog_contentDiv_shadow{
    z-index:90;/* Always needed - to make it appear below the message */
    position:absolute;  /* Always needed    */
    background-color:#555;
    filter:alpha(opacity=30);   /* Transparency */
    opacity:0.3;    /* Transparency */  
}