/*
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/
*/


/*=============[TABLE OF CONTENTS]=============*/
/*
    Layout Sections         (Header/Sidebar/Footer/Content)
    Special Pages           (About/Contact/Search/404)
    General Design Elements (Background/Links/Text)
    Unique Design Elements  (One time use...ex/ referrer based intro)

*/
/*==================[End TOC]==================*/



/*    Layout Sections         (Header/Sidebar/Footer/Content) */
/*===========================================================*/

.custom #header {
    background: url('images/logo-world-gtl.png') 20% 5% no-repeat;
    height: 80px;
}

.custom #header #tagline {
    font-weight: bold;
    color: darkblue;
}

.custom #tabs li.page-item-1 {
    background-color: lightblue;
}

.custom #tabs li.current_page_item {
    background-color: white;
}

.custom .post_box {
    border-top: none;
}


/*    Special Pages           (About/Contact/Search/404) */
/*===========================================================*/


/*---SEARCH---*/

.google_tax_search #content {
    width: 100%;
/*    height: 1.2em; */
}

.custom .headline_area {
    text-align: center;
}

.custom #cse-search-box {
    margin-left: 300px;
}

.google_tax_search input {
    font-size: 1.75em;
    padding: 1px;
}

.ie #cse-search-box {
    margin-left: 350px;
}

.ie input {
    font-size: 1.25em;
    padding: 0px 1px;
}

.google_tax_search p.alert {
    width: 50%;
    padding: 1em;
    margin: 2em;
}

.custom .migrate-hello {
    margin-left: 275px;
}

.results #content {
    width: 100%;
    text-align: center;
}

.results .headline_area a {
    color: #999;
    font-size: 1.5em;
    margin-right: 750px;
    text-decoration: underline;
}

.results .headline_area a:hover {
    color: #666; 
    background-color: #E0E0E0; 
    text-decoration: none;
}

.google_tax_search #content_box, .results #content_box {
    background: none;
}

.custom #goog-wm-sb {
    border-width: 4px;
    padding: 0.5px;
    width: 120px;
}

.ie #goog-wm-sb {
    font-size: 1em;
    border-width: 1px;
    padding: 0.5px;
    width: 120px;
}

/* NEW GCS ELEMENT STYLE */

  .gsc-control-cse {
    font-family: Arial, sans-serif;
    border-color: #FFCC66;
    background-color: #FFFFFF;
  }
  input.gsc-input {
    border-color: #BCCDF0;
  }
  input.gsc-search-button {
    border-color: #336699;
    background-color: #E9E9E9;
  }
  .gsc-tabHeader.gsc-tabhInactive {
    border-color: #E9E9E9;
    background-color: #E9E9E9;
  }
  .gsc-tabHeader.gsc-tabhActive {
    border-top-color: #FF9900;
    border-left-color: #E9E9E9;
    border-right-color: #E9E9E9;
    background-color: #FFFFFF;
  }
  .gsc-tabsArea {
    border-color: #E9E9E9;
  }
  .gsc-webResult.gsc-result {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
  }
  .gsc-webResult.gsc-result:hover {
    border-color: #FFFFFF;
    background-color: #FFFFFF;
  }
  .gs-webResult.gs-result a.gs-title:link,
  .gs-webResult.gs-result a.gs-title:link b {
    color: #0000CC;
  }
  .gs-webResult.gs-result a.gs-title:visited,
  .gs-webResult.gs-result a.gs-title:visited b {
    color: #663399;
  }
  .gs-webResult.gs-result a.gs-title:hover,
  .gs-webResult.gs-result a.gs-title:hover b {
    color: #0000FF;
  }
  .gs-webResult.gs-result a.gs-title:active,
  .gs-webResult.gs-result a.gs-title:active b {
    color: #0000FF;
  }
  .gsc-cursor-page {
    color: #0000CC;
  }
  a.gsc-trailing-more-results:link {
    color: #0000CC;
  }
  .gs-webResult.gs-result .gs-snippet {
    color: #000000;
  }
  .gs-webResult.gs-result .gs-visibleUrl {
    color: #888888;
  }
  .gs-webResult.gs-result .gs-visibleUrl-short {
    color: #888888;
  }
  .gsc-cursor-box {
    border-color: #FFFFFF;
  }
  .gsc-results .gsc-cursor-page {
    border-color: #E9E9E9;
    background-color: #FFFFFF;
  }
  .gsc-results .gsc-cursor-page.gsc-cursor-current-page {
    border-color: #FF9900;
    background-color: #FFFFFF;
  }
  .gs-promotion.gs-result {
    border-color: #336699;
    background-color: #FFFFFF;
  }
  .gs-promotion.gs-result a.gs-title:link {
    color: #0000CC;
  }
  .gs-promotion.gs-result a.gs-title:visited {
    color: #0000CC;
  }
  .gs-promotion.gs-result a.gs-title:hover {
    color: #0000CC;
  }
  .gs-promotion.gs-result a.gs-title:active {
    color: #0000CC;
  }
  .gs-promotion.gs-result .gs-snippet {
    color: #000000;
  }
  .gs-promotion.gs-result .gs-visibleUrl,
  .gs-promotion.gs-result .gs-visibleUrl-short {
    color: #008000;
  }



/*    General Design Elements (Background/Posts/Links/Text) */
/*===========================================================*/


    /* BACKGROUND STYLES */

/* BACKGROUND COLOR */

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}


/* BACKGROUND IMAGE */
/*
body.custom {
    background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}
*/


	/*---------:( Single Post Styles ):---------*/
/*---:( Author Box ):---*/
.custom .postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.custom .postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.custom .postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.custom .postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }
.custom .postauthor p.hlight { font-size: 11px; text-transform: uppercase; }
.custom .postauthor p.hlight span { color: #CB3131; font-size: 13px; font-style: italic; font-weight: bold; letter-spacing: 0.8px; }
/* BOXES */
.custom #similar h3, #rightcol h3 { font-size: 1.8em; letter-spacing: normal; padding-top: 15px; }
.custom #similar { float: left; width: 50%; }
.custom #similar p { margin-bottom: 15px; padding: 10px 2.5em 10px 10px; }
.custom #similar a { font-size: 1.4em; border-bottom: 1px solid #CB3131; line-height: 1.5em; }
.custom #similar a:hover { border: 0; }
.custom #similar h3 { padding-left: 10px; }
.custom #similar span.date { color: #888; letter-spacing: 1px; text-transform: uppercase; }
.custom #rightcol { float: right; width: 50%; }
.custom #rightcol p { font-size: 14px; line-height: 1.5em; padding: 10px 2.5em 10px 0;  }
.custom #rightcol h3 { padding: 0; }
.custom #rightcol ul { list-style-position: inside;  list-style-type: square; margin-left: 1em; }
.custom #rightcol ul a { border-bottom: 1px solid #CB3131; font-size: 14px; }
.custom #rightcol ul a:hover { border: 0; }
.custom #rightcol li { margin-bottom: 10px; }
.custom #subscribe { background: #FFFBCC; border: 1px solid #E6DB55; float: right; margin: 15px 15px 0 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
.custom #custom { background: #E4F2FD; border: 1px solid #C6D9E9; float: right; margin: 15px; padding: 19px 10px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }
	/*---------:( END Single Post Styles ):---------*/

/*---:( REMOVE WP STATS SMILEY ):---*/
.custom img#wpstats {
    display: none;
}


/*   Unique Design Elements  (One time...ex/ referrer intro) */
/*===========================================================*/


/*---:[ Add Search Plugins ]:---*/
.custom #addsearch {
    background-color: darkgray;
    border: 1px solid #EEE9E9;
    font-size: 1.2em;
    height: 80px;
    margin-bottom: 40px;
    margin-left: 355px;
    padding-top: 30px;
    text-align: center;
    width: 300px;
}

.custom #addsearch a {
    background-color: #eee9e9;
    border: solid lightgray 1px;
    padding: 4px;
    position: relative;
}


/*---:[ Tabbed Box ]:---*/
.custom .tabbed-box {
    width: 302px;
    background: #fff url(tabbed-body-bg.jpg) repeat-x bottom;
    border: 1px solid #ddd; }

.custom .tabbed-box .tabs li {
    list-style: none;
    float: left; }
.custom .tabbed-box .tabs li a {
    display: block;
    width: 100px;
    padding: 5px 0;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #888;
    background: #fff url(tabbed-tab-bg.jpg) repeat-x bottom;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;}
.custom .tabbed-box .tabs li:first-child a {
    border-left: none; }

.custom .tabbed-box .tabs li a:hover {
    color: #333; }
.custom .tabbed-box .tabs li a:focus {
    outline: none; }
.custom .tabbed-box .tabs li a.active {
    background: #fff;
    color: #333;
    border-bottom: 1px solid #fff; }

.custom .tabbed-content {
    padding: 3em 1em 1em 1em;
    display: none; }
/*---:[ end Tabbed Box ]:---*/


@media only screen and (max-device-width: 480px) {
  .custom body {color: #000;}
  .custom #sidebars {display: none;}
}