/* This is the class for the <html> section of the website, removing padding.  */
html {
	padding: 0;
	margin: 0;
}


/* This is the class for the <body> element of the webpage.  */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}


/*  This clears some of the pre-defined browser defaults for tables.  */
table {
	border-spacing: 0px;
	border-collapse: collapse;
	border-width: 0px;
}


/* This assigns the default settings for most form elements.  */
input, textarea, select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 3px;
	vertical-align: middle;
}


/*  This sets the default link styles on the website (for all states other than when hovered over)  */
a, a:link, a:active, a:visited {
	color: #000;
	text-decoration: none;
}


/*  This sets the default link styles on the website when a link is hovered.  */
a:hover {
	color: #000;
	text-decoration: underline;
}


/* This sets the default styling of the revision alerts display wrapper */
#revision-alert {
	padding: 10px;
	margin: 10px auto;
	width: auto;
	border: 1px solid #F90;
	background-color: #FFC;
	border-radius: 5px;
	text-align: center;
}

#revision-details {
	padding: 10px;
	margin: 10px auto;
	width: auto;
	border: 1px solid #F90;
	background-color: #FFC;
	border-radius: 5px;
	text-align: center;
	width: 500px;
}

/* This sets the styling of the details table within the display wrapper of the revision alerts */
#revision-details table {
	margin: auto;
}

#revision-details table td {
	padding: 5px;
	vertical-align: top;
	text-align: left;
}

#revision-details table td#left {
	text-align: right;
	font-weight: bold;
	width: 175px;
}


/* Styles For Main Dropdown Menus */
#dropdown_menu ul {
	list-style: none;
}

#dropdown_menu ul li {
	display: inline;
}

.dropdown, .dropdown ul { /*topmost and sub ULs, respectively*/
	font-size: 13px;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 1px;
	list-style-type: none;
	background: white;
	border: 1px solid #000;
	border-bottom-width: 0;
	visibility: hidden;
	display: none; /*collapse all sub menus to begin with*/
	box-shadow: 3px 3px 8px #818181; /*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 3px 3px 8px #818181;
	-moz-box-shadow: 3px 3px 8px #818181;
	-khtml-box-shadow: 3px 3px 8px #818181;
}

.dropdown li {
	position: relative;
}

.dropdown li a {
	display: block;
	width: 160px; /*width of menu (not including side paddings)*/
	color: #000;
	background: #EBEBEB;
	border-bottom: 1px solid #000;
	text-decoration: none;
	padding: 4px 5px;
	font-weight: bold;
}

* html .dropdown li { /*IE6 CSS hack*/
	display: inline-block;
	width: 170px; /*width of menu (include side paddings of LI A*/
}

.dropdown li a:hover, .dropdown li.selected>a {
	background: #FFF;
	color: #000;
	font-weight: bold;
}

.rightarrowclass {
	position: absolute; 
	top: 6px;
	right: 5px;
}