#footer {
background-image: url("images/footer-backgrd.jpg");
color: #212121;
}
ul.menu li a {text-transform: capitalize;} 
.menu .sidebar ul.sub-menu a {
width: 15em;
}
.menu .sidebar ul.sub-menu {
position: static;
visibility: visible;
}
.sidebar li.widget ul li {
margin-bottom:0em; }
.sidebar li.widget li ul {
margin:0 0 0 0;
}
.sidebar .menu a {
border-width:0px;
color: #0074B2;
}
.sidebar .menu {
border-width:0px;
}
.menu .sidebar .current a, .menu .sidebar .current-cat a, .menu .sidebar .current-menu-item a {
border-color:transparent;
text-transform:capitalize;
background-color:transparent;
}
.menu .sidebar .current a:hover, .menu .sidebar .current-cat a:hover, .menu .sidebar .current-menu-item a:hover {
border-color:transparent;
text-transform:capitalize;
background-color:transparent;
}
.current-menu-item a:hover {
color: #0074B2 !important;
}
.menu .sidebar a:hover, .menu .sidebar .current ul a:hover, .menu .sidebar .current-cat ul a:hover, .menu .sidebar .current-parent a:hover, .menu .sidebar .current-menu-item ul a:hover, .menu .sidebar .current-menu-ancestor a:hover {
border-color:transparent;
text-transform:capitalize;
background-color:transparent;
}
.menu .sidebar , .menu .sidebar a, .menu .sidebar li ul {
border-color:transparent;
text-transform:capitalize;
}
.sidebar .widget_nav_menu ul li a, .sidebar .widget_nav_menu ul li {
background-color: transparent;
float: none;
padding: 1px 1px 4px 1px;
}
.sidebar .menu-navigation-menu-container {
padding-left:10px;
}
.menu .sidebar a, .menu .sidebar .current ul a, .menu .sidebar .current-cat ul a, .menu .sidebar .current-menu-item ul a {
background: none repeat scroll 0 0 transparent;
}
.menu .sidebar ul .current a, .menu .sidebar ul .current-cat a, .menu .sidebar .current ul a, .menu .sidebar .current-cat ul a, .menu .sidebar ul .current-menu-item a {
border-bottom-color: transparent;
}
.menu .sidebar .current-parent > a, .menu .sidebar .current-cat-parent > a, .menu .sidebar .current-menu-ancestor > a {
background: none repeat scroll 0 0 transparent;
} 

/*
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

/* Custom Code */

#pages-3 ul li {
padding-left: 10px;
}

/*     End     */

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/
*/