/* Global elements */

body {
	font: 100%/1 Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0;
	padding: 0;
	color: #000;
	background-repeat: no-repeat;
}

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h2 {
    padding-top: 10px;
}

a:link {
	/*color: #42413C;*/
        color: gold;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	/*color: #6E6C64;*/
        color: tan;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

input, select, option, textarea {
	font-size: 1em;
	color: #000;
}

.header {
	background: #000000;
}


/* ID elements */
.newbutton {
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	top: auto;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: normal;
	color: #333c33;
	backface-visibility: visible;
	appearance: button;
	box-sizing: content-box;
	width: auto;
	padding-left: 5px;
	outline-color: #333;
	vertical-align: middle;
}

#bodyContent {
    width: 1000px;
}

#pageTop {
    padding: 10px 10px 0;
    font-size: .6em;
	color: #ffffff;
    background-color: #000000;

    background-repeat: no-repeat;
    vertical-align: baseline;
    
    
}

#pageTop a:link, #pageTop a:visited {
    color: #ffffff;
    background:transparent;
    text-decoration: none;
    
}
#pageTop a:hover{
    color: #ffd530;
    background:transparent;
    text-decoration: none;
}

#leftNav {
	/* Left Navigation sidebar */
    /*width: 160px;
	color: #ffffff;
	
	background-repeat: no-repeat;
	height: 750px;
	position: absolute;
	left: 0px;
	top: 99px;
	padding-top: 10px;
	z-index: 50;*/
        float: left;
	width: 150px;
	background: #000000;
	padding-bottom: 10px;
	padding-left: 12px;
        font-size: 0.75em;
        background-image: url(../images/leftmenu.jpg);
    background-repeat: no-repeat;
        height:750px;
}

#leftNav .menu {
    /* Menu styles used in Left Navigation sidebar  */
    font-size: 1em;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2em;
    padding-left: 5px;
}

#leftNav .menu a, #leftNav .menu a:visited, #logout a:link, #logout a:visited {
    color: #d9d3c8;
    text-decoration: none;
}

#leftNav .menu a:hover, #leftNav .menu a:active {
    color: #ffd530;
    text-decoration: underline;
}

#leftNav .menu ul {
    margin-left: 0px;
    padding: 0;
    float: left;
    list-style-position: inside;
    list-style-image: none;
    list-style-type: none;
}

#mainContent {
   /* margin-left: 160px;
    padding: 10px;
	background-color: #CCC4B7;*/
    width: 780px;
	float: left;
	background-color: #000000;
	/*background-image: ;*/
	background-repeat: no-repeat;
	
        color: white;
}

#pageContent ol, #pageContent ul {
    padding: 0 15px 15px 40px;
}

#mainContent {
    border-left-color: #000000;
    border-left-style: none;
    width: 840px;
}

#divLogin {
    margin-left: 60px;
    padding: 10px;
	background-color: #CCC4B7;
}

.leftContent {
    float:left;
}

#pageFooter {
	/*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	
	color: #333c33;
	background-color: #CCC4B7;
	font-size: 0.9em;
	padding-left: 10px;
	padding-right: 8px;
        clear:both; */
        padding: 10px 0;
	background: #000000;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
        color: #1E1E1E;
	font-size: 10px;
        font-style: italic;
	text-align: center;
        width: 840px;
        /*border-left-color: #000000;*/
        /*border-left-style: none;*/

}

#logout {
    padding-top: 10px;
    font-size: .6em;
    float: right;
    color: #ffffff;
}



/* Class elements */

.separator {
    margin-left: 5px;
    margin-right: 5px;
}

.headerLinks {
    float: right;
    font-size: .9em;
}

.headerLinks .label {
    font-variant: small-caps;
    font-size: .9em;

    font-style: italic;
}

.headerLinks a:link, .headerLinks a:visited {
    color: #ffffff;
}

.headerLinks a:hover, .headerLinks a:active {
    color: #ffd530;
}

.contentTable table {

	border-color: #727365;
	font-size: 1em;
	border-width: 1px;
}

.contentTable th {
    text-align: center;
    font-weight: bold;
}

.contentTable td {
    border: 1px;
	border-color: #727365;
    padding: 2px;
}

.formLabel {
    font-weight: bold;
    font-variant: small-caps;
}

.formTable table {
    border: 2px;
	border-color:#727365;
    font-size: 1em;
}

.formTable td {
    border: 0px;
    padding: 3px;
}

.formTable button {
    cursor: pointer;
    border-width: medium;
    border-color: #ffd530;
	border-width: medium;
    background-color: #ffffff;
}

.formTable button span {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: .8em;
    font-weight: bold;
    text-transform: uppercase;
}

/* Status indicators*/
.statusGood {
    font-family: helvetica, "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-weight: bold;
    background-color: #669966;
    color: #ffffff;
}

.statusBad {
    font-family: helvetica, "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-weight: bold;
    background-color: #CC3300;
    color: #ffffff;
}

.statusCaution {
    font-family: helvetica, "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-weight: bold;
    background-color: #FFCC33;
    color: #404040;
}

.error {
    font-weight: bold;
    color: #FF0000;
}

#welcomeMenu div {
    padding-top: 20px;
}

#welcomeMenu a:link, #welcomeMenu a:visited {color: #ffffff}

#welcomeMenu a:hover {color: #ffd530}
