/*
File:			custom.css
Description:	Custom styles for Thesis
More Info:		http://diythemes.com/thesis/rtfm/custom-css/
*/


/* testing page border radius */
.custom #page {  -webkit-border-radius:20px; -moz-border-radius:20px; border-radius:20px;  padding-top:1em; padding-bottom:0em; }

/* ----- code for menubar to extend to full width under header ----- */
.menu {
    background: none repeat scroll 0 0 #000000;
}


/* ----- code to apply border around featured posts ------ */
/* Style the First (or Only) Post */
.custom .post.post_box {
   background:#E8E8E8 none repeat scroll 0 0;
   border:1px double #A3A3A3;
   border-top-right-radius: 10px;
   border-top-left-radius: 10px; 
   margin:1em;
   padding:2em;
}

/* ---- add white space after navbar before feature content info -----*/
.custom #content {
    margin: 1.5em 0 0.611em;
}

/* ------ border around widgets --------------
.custom .sidebar .widget {
    -moz-border-radius: 0.5em 0.5em 0.5em 0.5em;
    background-color: #fff;
    border: 1.5px solid #000;
    padding: 5%;
    width: 90%;
}*/

/* ------- code to remove frame on feature box ----*/
.custom #feature_box {
    background: none repeat scroll 0 0 transparent;
    padding-left: 2em;
}

/* ----- custom code for border around special widget ------*/
.custom .widget_categoryposts {
    border: 4px solid #C9C9C9;
    background-color: #F5F5F5;
    padding: 5%;
    width: 90%;
}

/* ------------ code to format 3 column footer widgets ----------*/
.custom #footer-widget-block { text-align:left; overflow:hidden; }
.custom .footer-widgets { width:33%; float:left; }
.custom .my-footer-one {}
.custom .my-footer-two {}
.custom .my-footer-three {}

/* --------- custom code to format wp categories lists thesis_hook_after_content -------*/
.custom .mref-widget {
   background:#E8E8E8 none repeat scroll 0 0;
   border:1px double #A3A3A3;
   border-bottom-right-radius: 10px;
   border-bottom-left-radius: 10px;
   width: 95%; 
   //margin:1em;
   padding:1em;
}

/* --------- custom code to format image footer with widgets -------
.custom #footer {
   border:1px double #ffffff;
   border-bottom-right-radius: 10px;
   border-bottom-left-radius: 10px;
   width: 95.3%; 
   //margin:1em;
   padding:1em;
}*/

/* --------- custom code to format image header -----------------
.custom #header {
   border:1px double #ffffff;
   border-top-right-radius: 20px;
   border-top-left-radius: 20px;
}*/

/* -------gradient background code for entire page -------------/
#page {
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progidXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

/* ---------- custom code for sticky post on front ----------------*/
.custom .sticky {
background: #fff;
border: 2px solid #000;
padding:3em 2em 3em 2em;
}