/*
File:			custom.css
Description:	Custom styles for the Thesis 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 li.must_see { width: 13.61538em; padding: 0.84615em; line-height: 1.38462em; background: #f5f5f5; border: 0.07692em solid #addde6; }

	.custom li.must_see h3 { font-size: 1.07692em; line-height: 1.28571em; margin-bottom: 0.42857em; }

	.custom li.must_see p { margin-bottom: 0; padding: 0; }
	
/*full width CONTENT********************************************************************************/
.fullwidth{
width:900px;
height:2900px; 
float:left;
padding-right:10px;}
.fullwidth h1,.entry h1{
font-size:16px;
padding:0px 0px 5px 0px;
border-bottom:1px solid #CCCCCC;}
.fullwidth h1 a{
color: #333333;
text-decoration:none;}
.fullwidth h1 a:hover{
color: #336699; }
.fullwidth a{
text-decoration:underline;}
.fullwidth a:hover{
color:#000000;
background: #E0F2F8;}