/*
File:			custom.css
Description:	Custom styles for the Neoclassical Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/
.custom a, .custom a:visited { color: #1EAD03; }
	
	.custom a:hover { color: #116700; /*#00f*/ }


div#links a {display: inherit; text-align: center; font: bold 1em sans-serif; 
   padding: auto; margin: auto; border-width: 0; 
   text-decoration: none; color: #FFFFFF; background: #FFFFFF;
   border-right: 0px solid #FFFFFF;}
   
div#links a:hover {color: #393939; background: #FFFFFF;}

div#links a span {display: none;}

div#links a:hover span {display: inline-table;
   position: absolute; height:auto; width: 200px;
   padding-left: 12px; padding-top: -5px; margin: 0px; z-index: 100;
   color: #393939; background: rgba(255,255,255,0.8);
   font: 10px Verdana, sans-serif; text-align: left;}

div#links a:hover span.banner {display: block;
   position: relative; top: 0px; left: 0px;  height: 15px; width: 400px;
   padding: 0; margin:0; z-index: 100;
   color: red; background: rgba(255,255,255,0.5);
   font: 10px Verdana, sans-serif; text-align: center;
   }

#blogname {
display:none;
}   /* don't display the blog name with the header */

#userlist { 
list-style:none;
}  /* remove the damned dots */

#userlist li  {
font-family: Verdana, arial, helvetica, sans-serif;
font-size:1.2em;
display:block;
margin-bottom:5px;
margin-left:10px; 
}  /* style up this bitch */


#userDetails {
border:1px solid #ddd;  /* make a pretty box */
margin:18px;  /* line up the box */
padding:8px; /* give the text a whitespace border inside the box */
font-size:130%;
min-height:250px;height:auto!important;height:250px;  /* addresses height issues wrapping around the image in FF and IE */
}  /* add a pretty box for the author details */

#userDetails p {
margin-bottom:10px;
}   /* space out each profile fact */


#userDetails img.photo {
float:left;
margin-right:8px;
margin-bottom:3px;
margin-top:0px;
}
 /* display the avatar on the left of the user data */

.clearline  {
height:0px;
color:#fff;
clear:both;
}

.archives .navigation {
background:#fff;
border:none;
} /* get rid of annoying blank gray box at the bottom of author page */

#content #index_bar h2 a {
color:#000000;
}

#content #index_bar ul {
list-style:none;
padding:0px 10px 0px;
margin:0px;
}

#content #index_bar li {
font-size:110%;
padding:0px;
margin:0px 0px 8px;
}


div .yd_rp_widget ul li h4 {
font-size:130%; margin:10px 0px; line-height:1em;
}