/*
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/
*/

body.custom {
    background: #fff;
}

// This applies from 0px to 600px 
body { 
  background: #fff; 
}

// This applies from 600px onwards 
@media (min-width: 600px) {
.custom #container {
    width: 1020px;
    background: transparent url('http://www.lilia.com/images/bg-container.png') repeat-y center;
}

#page {
    margin: 0 auto;
    padding: 0;
    width: 1000px;
    background-color: #fff;
}

#content {
    margin: 0;
    padding: 20px 30px;
    width: 660px;
    background-color: #fff;
}
}


.menu, .menu a, .menu li ul { 
    border: none; 
    background: #fff;
}

.widget {
    padding: 6px;
}

.textwidget {
    padding-right: 16px;
    color: #333;
}

li.widget {
    margin-bottom: 20px;
}

.post {
    background-color: #fff;
    padding: 0;
    border: none;
}

.entry-title {
    font-weight: normal;
}

#post-2, #post-7, #post-75, #post-77, #post-88, #post-97 {
    background-color: #fff;
}

.post-pic {
    text-align: center;
}

.post-pics img {
    border: none;
    margin: 0;
    padding: 0 0 4px 0;
    text-align: center;
}

.post-pic-left img {
    border: none;
    margin: 0;
    padding: 0 4px 4px 0;
}

.post_box, .teasers_box, .full_width #content_box .page {
margin:0;
padding: 0;
}

.sidebar ul.sidebar_list {
    padding-left: 0;
    padding-right: 0;
}

.widget_text {
    color: #fff;
}



h2 {
    color: #666;
    font-weight: normal;
}

h3 {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.prev_next {
    border: none;
    font-size: 11px;
}

#about_us {
    margin: 10px 20px 0 20px;
    color: #000;
    float: left;
    text-align: left;
}

.about-pic {
    border: 10px solid #fff;
    margin: 0 0 10px 0;
}

#link-love {
    margin: 10px 0 0 0;
    width: 210px;
    float: left;
    padding: 0;
    text-align: left;
    border: none;
}

ul {
    margin: 0 0 0 10px;
}

li {
    font-size: 12px;
    line-height: 150%;
}

/*---:[ footer styles ]:---*/

#footer {
    background: #fff url('http://lilia.com/images/bg-footer.jpg') no-repeat;
    border: none;
    height: 24px;
}

#footer-links {
   float: left;
}

#copyright {
   float: right;
}


#footer a { font-size: 12px; color: #000; border-bottom: 1px dotted #666; }
#footer a:hover { color: #000; border-bottom: 1px dotted #666; }

#badges a { border: none; }
#badges a:hover { border: none; }

#buttons a { border: none; }
#buttons a:hover { border: none; }


/* Raves ---------------------------------------------------------------- */

.rave {
    margin: 0 auto 40px auto;
    min-height:185px;
    height: auto !important;
}

.rave-image {
    margin: 0 20px 0 0;
    padding: 0;
    border: 1px solid #000;
    float: left;
}

.rave-text {
    margin: 0;
    padding: 0;
}

.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}

/* Remove headlines from Gallery Pages ---------------------------------------------------------------- */
.custom #post-2323 .headline_area, 
.custom #post-2185 .headline_area, 
.custom #post-2121 .headline_area, 
.custom #post-2281 .headline_area, 
.custom #post-2069 .headline_area, 
.custom #post-2554 .headline_area,  
.custom #post-2602 .headline_area,
.custom #post-2853 .headline_area,
.custom #post-2931 .headline_area,
.custom #post-3024 .headline_area,
.custom #post-3313 .headline_area,
.custom #post-3364 .headline_area,
.custom #post-3413 .headline_area,
.custom #post-4169 .headline_area,
.custom #post-4208 .headline_area,
.custom #post-4247 .headline_area,
.custom #post-4865 .headline_area,
.custom #post-4934 .headline_area,
.custom #post-5030 .headline_area
{ 
    display:none; 
}

