/*-------------------
layout floraeobscurae.farangis.de
Author: G.Y. Arani-May <arani-may@veganswines.com>
Copyright G.Y. Arani-May & Farangis Yegane <mail@farangis.de>. All rights reserved
---------------------------------------------------------------------------------*/

/*-------------------
Normalize all elements and set base font sizing
---------------------------------------------------------------------------------*/
* {
	padding: 0;
	margin: 0;
}
body {
	background: White;
	font: small/1.5em "Times New Roman", Times, serif;
	color: #333;
	padding-bottom: 2em;
	font-sizesssssssssssss: 100%;
}
#wrapper {
	width: 66.15em;
	margin: auto;
	margin-bottom: 2em;
}





/*-------------------
Layout
---------------------------------------------------------------------------------*/
div#bodywrap {
	border: .075em solid #A9A9A9;
	border-top: none;
	border-bottom: none;
}
div.content-block, div.sub-feature-block {
	float: left;
}
div#audience-navigation, div.sub-feature-block  {
	width: 22em;
}
div.content-block, div.sub-feature-block {
	overflow: hidden;
} 
div#main-content {
	width: 44em;
	margin-left: 22em;
}

div#feature-block3 {
	margin-right: -1px;
}
div.section-features-block {
	border-bottom: 1px solid #DCDCDC;
	margin-bottom: 1em;
	padding-bottom: 1em;
}
div.feature-wrapper {
	margin: .5em;
	padding: .5em;
	overflow: hidden;
	background-color: #fff;
	/* height: 45em; */
}
div#audience-navigation {
	width: 22em;
	margin-left: -66em;
	overflow: visible;
	position: relative;
	z-index: 100;
	background-color: White;
}
div#sub-wrapper, div#sub-features, div#content {
	background-image: url(../../images/graphs/vrt_px.gif);
	background-repeat: repeat-y;
	background-position: 22em 0;
	background-color: #F5F5F5;
}
div#main-body {
}
div#sub-features {
	background-position: 44em 0;
	background-color: transparent;
	border-bottom: 1px solid #A9A9A9;
}

/*-------------------
General appearance and typography adjustments
---------------------------------------------------------------------------------*/
a {
	padding: 2px;
	color: #5F9EA0;
	text-decoration: none;
}
a:link {
}
a:visited {
}
a:hover {
	background-color: White;
	color: Black;
	text-decoration: underline;
}
a:active {
	color: #4682B4;
	background-color: White;
}
p {
	padding-bottom: 1em;
	font-size:120%;
}
#header h1 {
	font-size: 200%;
}
h2 {
	font-size: 170%;
}
h3 {
	font-size: 140%;
	padding-bottom: .5em;
}
h4 {
	font-size: 120%;
}
h5 {
	font-size: 100%;
}
h6 {
	font-size: 80%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: lighter;
}
a.no-hover {
	background: none;
	display: block;
}
a.no-hover:link {
	background: none;
}
a.no-hover:visited {
	background: none;
}
a.no-hover:hover {
	background: none;
}
a.no-hover:active {
	background: none;
}
.block, a.block:link, a.block:visited, a.block:hover, a.block:active  {
	display: block;
}
.clearall {
	display: block;
	clear: both;
}
.hide {
	display: none;
}
.feature-block-image {
	margin: auto;
	margin-top: .5em;
	margin-bottom: .5em;
	display: block;
}
.img-border, a.img-border-link img {
	padding: 3px;
	border: 1px solid #ccc;
}
a.img-border-link:link img {
	border-color: #ccc;
}
a.img-border-link:visited img {
	border-color: #eee;
}
a.img-border-link:hover img {
	border-color: #333;
}
a.img-border-link:active img {
	border-color: #000;
}

img {
	border: none;
}

.img-right {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}
.img-left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
div.sub-feature-block h4 {
	color: #48D1CC;
}
div.section-features-block h3 {
	margin-bottom: .5em;
	padding-left: .2em;
	padding-bottom: 0;
	color: #696969;
	letter-spacing: .02em;
	font-size: 130%;
	background: url(../../images/graphs/mdshad.png) repeat-y left;
	border-bottom: 1px solid #F5F5F5;
}
h3#col_one {

}
h5#five_col_one {
	color: #1E90FF;
	text-transform: uppercase;
}
h3#col_two {

}
h3#col_two_two {

}
h3#col_three {

}
h3#col_three_two {

}


/*-------------------
Left Nav
---------------------------------------------------------------------------------*/


/* - - - ADxMenu. Basic styles (keep!). CREDITS GO TO: http://www.aplus.co.yu - - - */

.menu {
	width: 21em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}

/* - - - ADxMenu: DESIGN styles ... - - - */

.menu, .menu ul li {
	background: White;
}

.menu {
	width: 21em;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.9em;
	margin-left: 1em;
}

.menu ul {
	width: 22em;
}
.menu li ul li {
}
.menu a {
	text-decoration: none;
	color: Black;
	padding: .4em 1em;
	display: block;
}
.menu a:hover, .menu li:hover>a {
	color: #6A5ACD;
}

.menu li {	/* create borders around each item */
}
.menu>li + li, .menu ul>li + li {
	/* and remove the top border on all but first item in the list */
}

.menu li:hover>ul {
	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 100%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
}

.nav-parent {
	background: url(../../images/graphs/right-arrow2.gif) no-repeat center right;
}

#audience-navigation h3, #audience-navigation h4 {
	clear: left;
	padding: 20px 5px 3px 10px;
	background-color: transparent;
	color: Black;
	border-bottom: 1px solid #F5F5F5;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.upperh_leftnav {
	margin-top: 5px;
}
.menu li a:hover {
}
li.sub {

}
li.upper {

}


/*-------------------
Utility Bar
---------------------------------------------------------------------------------*/
#utility-bar {
	text-align: right;
	font-size: 90%;
	padding: .75em .25em;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1em;
	color: #F5F5F5;
}
#utility-bar a {
	font-weight: 300;
	text-decoration: none;
	color: Silver;
	background-color: transparent;
}
#utility-bar a:link {
}
#utility-bar a:visited {
}
#utility-bar a:hover {
	color: White;
	text-decoration: underline;
}
#utility-bar a:active {
	color: White;
	text-decoration: none;
}
#utility-bar label {
	display: none;
}
#utility-bar input {
	font-size: 85%;
	border: 0;
}
#utility-bar input#q {
	width: 10em;
}
#utility-bar input#sa {
	padding: 0 .15em;
	font-weight: bold;
	text-transform: uppercase;
	background-color: White;
	color: Black;
	border: 1px solid #BCBC8F;
	border-top-color: #8FBCA6;
	border-left-color: #A5BC8F;
	width: 6.5em;
}
#utility-bar input#sa:hover {
	background-color: #DCDCDC;
	color: White;
	cursor: pointer;
}
/*-------------------
Header
---------------------------------------------------------------------------------*/
div#header {
	background: White url(../../images/graphs/hdr_b.jpg) no-repeat top right;
	border-bottom: none;
	border: .075em solid #A9A9A9;
}
div#tagline {
	color: #333;
	margin: 0;
	text-align: right;
	padding-top: 1em;
	padding-bottom: .5em;
	padding-right: 3em;
	font: italic 90%/1em Georgia, serif;
	margin-top: -25px;
}
div#header img {
	padding-top: 30px;
	padding-left: 50px;
}
div#header a {
	background: none;
}
div#header a:link {
	background: none;
}
div#header a:visited {
	background: none;
}
div#header a:hover {
	background: none;
}
div#header a:active {
	background: none;
}
/*-------------------
Upper content block
---------------------------------------------------------------------------------*/
div#content {
	background-image: url(../../images/graphs/wa-1000px.gif);
	background-position: 22em 0;
	background-repeat: repeat;
	background-color: White;
	width: 65.5em;
}
#main-content, #flashcontent, #flashcontent embed {
	position: relative;
	z-index: 10;
}
/*-------------------
Alternative content in upper block
-----------------------------------------------------------*/

span.cross {
	text-decoration: line-through;
}

div#announce-tmp {
	padding: 14px 0 0 25px;
	margin: 15px 0px -10px 0px;
	color: #CD5C5C;
	font-size: 1.1em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
}


div#alternate-content h2 {
	font-weight: normal;
	border-bottom: 1px solid #F5F5F5;
	font-size: 160%;
	padding: .2em 0 .2em .2em;
	margin-bottom: .6em;
	line-height: 1.1em;
	color: #4C8286;
	background: url(../../images/graphs/mdshad.png) repeat-y left;
}


div#alternate-content h3 {
	font-weight: normal;
	border-bottom: 1px solid #F5F5F5;
	font-size: 140%;
	text-transform: uppercase;
	letter-spacing: .15em;
	padding: .2em 0 0 .2em;
	color: #61A065;
	background: url(../../images/graphs/mdshad.png) repeat-y left;
}

div#alternate-content {
	background-color: White;
	padding: 1em;
	margin: 1em;
	height: 38.99em;
	border: 1px solid #DCDCDC;
	line-height: 1.5em;
}

div#alternate-content .no-hover a:hover {
	background-color: transparent;
}

div#alternate-content p {

}



/*-------------------
Lower block
---------------------------------------------------------------------------------*/
div.sub-feature-block h2, div.sub-feature-block h3, div.sub-feature-block h4, div.sub-feature-block p, div.sub-feature-block ul {
	padding-top: 0;
	margin-top: 0;
}
div.sub-feature-block h3 {
	color: #4C8286;
}
div.sub-feature-block h5 {
	color: #696969;
}
div.sub-feature-block {
	/* padding-top: .7em; */
	border-top: 1px solid #696969;
}
div.sub-feature-block h4 a.img-border-link {
	display: block;
	border-bottom: none;
}
div.sub-feature-block h4 a.img-border-link:link {

}
div.sub-feature-block h4 a.img-border-link:visited {

}
div.sub-feature-block h4 a.img-border-link:hover {
	background-color: #eee;
	border-bottom: none;
}
div.sub-feature-block h4 a.img-border-link:active {

}
div.sub-feature-block h4 a {
	text-decoration: none;
	display: block;
	/* margin-bottom: 5px; */
	border-bottom: 1px solid #fff;
}
div.sub-feature-block h4 a:link {
}
div.sub-feature-block h4 a:visited {
}
div.sub-feature-block h4 a:hover {
	color: Black;
	border-bottom: 1px solid #F5F5F5;
	background-color: #F5F5F5;
	text-decoration: none;
}
div.sub-feature-block h4 a:active {
}

.sub-feature-block ul {
	list-style: none;
}


/*-------------------
Large Footer
---------------------------------------------------------------------------------*/
div#page-footer {
	background-color: #fff;
	padding: .5em;
	padding-bottom: 2em;
}

#page-footer ul {
	list-style: none;
}
#page-footer ul, #page-footer li {
	margin: 0;
	padding: 0;
}
#page-footer ul.sub-list {
	margin-left: .6em;
}
#page-footer li {
	border-bottom: 1px solid #eee;
}
div.double {
	width: 43em;
	float: left;
}
div.single {
	width: 21em;
	margin-right: -1px;
	float: left;
}
div.double div, div.single div {
	padding: 1.5em;
}
div.double div.clearall, div.single div.clearall {
	padding: 0;
}
div#page-footer h4, div#page-footer h3 {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ddd;
	color: #666;
}
div#page-footer h4 {
	font-size: 100%;
}
div#page-footer h3 {
	font-size: 120%;
}
div#page-footer h4 a, div#page-footer h3 a {
	text-decoration: none;
	color: #5F9EA0;
}
div#page-footer h4 a:hover {
	color: Black;
}
div#page-footer ul.two-column-list, div#page-footer ul.two-column-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
div#page-footer ul.three-column-list li {
	float: left;
	width: 33%;
	border-bottom: none;
}
div#page-footer ul.two-column-list li {
	float: left;
	width: 49%;
	border-bottom: none;
}
div#page-footer ul.two-column-list li ul, #page-footer ul.three-column-list li ul {
	padding: 0;
	margin: 0;
}
div#page-footer ul.two-column-list li ul li, #page-footer ul.three-column-list li ul li {
	float: none;
	width: 95%;
	border-bottom: 1px solid #eee;
	padding: .15em 0;
}
div#page-footer li a {
	text-decoration: none;
	display: block;
	padding: 2px;
	line-height: 1.2em
}

div#page-footer li a:hover {
	background-color: #EFEFEF;
}

div#page-footer div.separator {
	clear: both;
	margin: 1em;
	border-top: 1px solid #333;
	height: 1px;
}
div#page-footer ul.basic-list {
	padding: 1em 0;
}
div#page-footer form {
	padding: 0 1em;
	font-size: 85%;
}
div#page-footer form legend {
	padding: .3em;
	border: 1px solid #eee;
	background-color: #fff;
}
div#page-footer form label {
	display: none;
}
div#page-footer form fieldset {
	padding: .3em;
	border: 1px solid #eee;
}
p.stand-alone {
	text-align: right;
	padding-right: 1em;
}
p.stand-alone a {
	font-size: 85%;
	text-decoration: none;
}
p.stand-alone a:hover {
	background-color: #EFEFEF;
}
input#sa2, input#keyword-submit {
	padding: 0 .15em;
	font-size: 90%;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #a6cef6;
	color: #039;
	border: 1px solid #627eb6;
	border-top-color: #9baed5;
	border-left-color: #9baed5;
}
input#sa2:hover, input#keyword-submit:hover {
	background-color: #039;
	color: #fff;
}
/*-------------------
Global Footer
-----------------------------------------------------------*/
#global-footer {
	color: Black;
	border: .075em solid #666;
	border-top-width: .225em;
	text-align: right;
	font-size: 85%;
	padding-bottom: 95px;
	clear: left;
	background: White url(../../images/graphs/foot_1j.jpg) no-repeat bottom right;
	height: 100%;
}
#global-footer p {
	padding: .3em .5em;
	line-height: 1.3em;
}
#global-footer p.feedback-link {
	border-bottom: 2px solid #666;
}

#global-footer a {
	color: #A9A9A9;
	padding: 1px;
	font-style: italic;
}
#global-footer a:link {
	color: #A9A9A9;
}
#global-footer a:visited {
	color: #A9A9A9;
}
#global-footer a:hover {
	color: #DCDCDC;
	text-decoration: none;
	background-color: transparent;
}
#global-footer a:active {
	color: #708090;
}

/*-------------------
Frequently Changing Settings
---------------------------------------------------------------------------------*/
body {
	background-color: White;
}
div.feature-wrapper {
	min-height: 47em;
}
