/* style items */

/* Main items */
body {
	font-family: Arial, sans-serif;
	font-style: normal;
	font-size: 14px;
	margin: 5px;
}

a {
	color: #6B8321;
	text-decoration: none;
}

a:hover {
	color: #6B8321;
	text-decoration: none;
}

hr {
	border: 1px solid #7D9A24;
}

input {
	border: 1px solid #7D9A24;
	background-color: #F1F6E4;
	font-size: 12px;
	color: #445315;

}

textarea {
	border: 1px solid #7D9A24;
	background-color: #F1F6E4;
	font-size: 12px;
	color: #445315;

}

select {
	border: 1px solid #7D9A24;
	background-color: #F1F6E4;
}

iframe {
	width: 100%;
	height: 100%;
}

/* Classes */
.bottomRight {
	position: absolute;
	bottom: 0px;
	right: 0px;
}

.submit input {
	background-color: #B9D75C;
	cursor: pointer;
}

.title fieldset {
	border: none;
	border-bottom: 2px solid #7D9A24;
}

.subtitle {
	font-size: 18px;
	font-weight: bold;
	color: #445315;
}

.error {
	color: red;
}

.orderedBy a {
	color: red;
}

/* Menu layout */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0 0 1px 0;
 padding: 0;
 width: 110px;
 list-style: none;
}
/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 115px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
 position: relative;
 margin: 0;
 color: black;
 border-bottom: 1px solid #7D9A24;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 font-family: Arial, sans-serif;
 font-size: 14px;
 display: block;
 padding: 3px;
 color: #445315;
 text-decoration: none;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #445315;
 margin: 0;
 background-color: #B9D75C;
}
.menulist a.highlighted {
 color: #445315;
 background-color: #E3FB9A;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */
