/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the 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!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
/*HEADER*/
.custom #header {border-bottom:none; height:278px; padding-top:0; padding-bottom:0; background:url(images/uwlr-header7.jpg) center left no-repeat;}
		.custom #header #logo {display:none;}
		.custom #header #tagline {display:none;}


/* NAVBAR INSIDE HEADER */
.custom .menu {margin-left: 10em; margin-top: 1em;}

.custom #header {position:relative;}
	.custom ul.menu {align:center; top:24.7em; width:auto;}
		

/*CONTENT BORDER/SHADOW*/
.custom #content_area .page {border:1px solid #dddddd;}
.custom #content_box {background: white;-webkit-box-shadow: 0px 0px 10px #888; -moz-box-shadow: 0px 0px 10px #888;box-shadow: 0px 0px 10px #888;}
.custom #content {border-right:1px solid #dddddd;}


/*SIDEBAR MARGINS ETC*/
.custom ul.sidebar_list li.widget h3{margin-left:0.1em;padding:0.5em 1em;font-size:13px;color:#fff;}


/*COLOR SIDEBAR HEADING*/
.custom ul.sidebar_list li h3{color:#ffffff;background-color:#9ec954;line-height: 1em;}

.custom li.widget p a { text-decoration: none; }


/*LINKS*/
.custom a { text-decoration: none; }
.custom a:hover { color: #718F41;} /* This makes links green when you mouse over them */


/*NAVBAR*/
.custom .menu a {-moz-border-radius: 0.615em 0.615em 0.615em 0.615em;
    border: 0.077em solid #DDDDDD;
    letter-spacing: normal;}


.custom .menu li { margin-right: 0.5em;}
.menu a, .menu .current ul a, .menu .current-cat ul a, .menu .current-menu-item ul a {background: none repeat scroll 0 0 #EFEFEF;color: #111111;}
.menu, .menu a, .menu li ul { border-color: #eeeeee; }

.menu a {
    border-width: 0 0 0 0;
    font-family: "Times;
   
    line-height: 1.231em;
    padding: 0.692em 0.846em;}

.custom .menu a:hover {-moz-box-shadow: 2px 2px 2px #888888;}

.custom .menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover, .menu .current-menu-item ul a:hover, .menu .current-menu-ancestor a:hover { background: none repeat scroll 00 #DDDDDD; color:#111111}


.menu .current a {border-color: #AAAAAA;}
.menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover, .menu .current-menu-item a, .menu .current-menu-item a:hover {
    background: none repeat scroll 0 0 #CCCCCC; color: #111111;}
.menu .current a, .menu .current-cat a, .menu .current-menu-item a {
    border-bottom-color: #CCCCCC;}


.custom #footer {  background-color: #b6d87b; )


/*BULLET LIST*/
.custom #content ul {
   list-style-image: none;
   list-style-position: outside;
   list-style-type: none;}

