* {
    margin: 0;
    padding: 0;
}

body {
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

p {
}

/*
 LEVEL ONE
 */
ul.dropdown {
    position: relative;
    z-index: 1000;
}

ul.dropdown li {
    font-weight: bold;
    float: left;
    zoom: 1;
    background: #ccc;
}

ul.dropdown a:hover {
    color: #FFF;
	text-decoration: none;
}

ul.dropdown a:active {
    color: #E92E16;
}

ul.dropdown li a {
    display: block;
    border: 0;
    color: #000;
}

ul.dropdown li:last-child a {
    border-right: none;
}
 /* Doesn't work in IE */
ul.dropdown li.hover, ul.dropdown li:hover {
    color: black;
    position: relative;
    background-color: #E92E16;
}

ul.dropdown li.hover a {
    color: black;
}

/*
 LEVEL TWO
 */
ul.dropdown ul {
    width: 200px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 1px;
}

ul.dropdown ul li {
    font-weight: normal;
    color: #000;
    float: none;
    /*padding: 5px;*/
    background-color: #EDEDED;
    font-size: 14px;
    line-height: 16px;
    margin: 0px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #333;
    border-bottom-color: #333;
    border-left-color: #333;
}

/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a {
    padding: 5px;
	border-right: none;
    width: 100%;
    display: inline-block;
    border: 0;
}

/*
 LEVEL THREE
 */
ul.dropdown ul ul {
    left: 100%;
    top: 0;
}

ul.dropdown li:hover > ul {
    visibility: visible;
}

#checklist {
    font-size: 14px;
    font-family: Arial, Calibri, san-serif;
    color: #444;
}

#checklist table {
    border: 1px solid #999;
    border-collapse: collapse;
}

#checklist td {
    border: 1px solid #999;
    margin: 0px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    text-align: left;
    vertical-align: top;
}

#checklist th {
    padding: 5px;
    background-color: #F0F0F0;
    border: 1px solid #999;
    text-align: left;
    vertical-align: top;
}

#standardtextbox form {
    display: block;
    width: 350px;
	height: 500px;
	font-size: 0.9em;
}
#standardtextbox form label{
    clear: left;
	float: left;
	margin-bottom: 15px;
}
#standardtextbox form input, #standardtextbox form select{
    float: right;
	width: 200px;
}
#standardtextbox form textarea{
    float: left;
	width: 350px;
}
.submitbutton{margin-top: 20px; width: 100px;}

.floatright {
    float: right;
}

.floatleft {
    float: left;
}

.clearboth {
    clear: both;
}
