/*
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/
*/
.custom #container {
    margin-top: 2em;
    margin-bottom: 0.5em;
    padding: 0.1em;
    background: #ffffff;
    border: 0.1em solid #E3E3E3;
}

.custom #nav_area ul { border-bottom: none; border-left: 1px; }

.custom #nav_area ul li { border-width: 1px; margin-bottom: 1px; padding-bottom: 0; background: none; }

.custom #nav_area ul li.rss { border-width: 0px; margin-bottom: 0px; padding-bottom: 0; background: none; }

.custom #nav_area ul#tabs { border-left: 1px; }

.custom #header { border-bottom: none; }

.custom #header { border-top: none; }

/*Attaching an image/logo in the header*/

.custom #title_area { background: none; padding: 1em 0 0.5em; border-bottom: none; }
.custom #header { border-bottom: none; height: 79px; padding-top: 0;
padding-bottom: 0; background: url(images/fullbanner.gif) top right
no-repeat; }



/*—:[ nav menu styles ]:—*/

.custom #nav_area ul#tabs { list-style: none; border: 1px solid #999999; border-width: 0 0 0px 1px; }

.custom #nav_area ul#tabs li { margin-bottom: -0.1em; background:
#FFED60; border: 1px solid #999999; border-left: 0; float: left; }

.custom #nav_area ul#tabs li.current_page_item, ul#tabs li.current-cat
{ padding-bottom: 0.1em; background: #fff; border-bottom: 0; }

.custom #nav_area ul#tabs li a { display: block; line-height: 1em;
color: #111; text-transform: uppercase; letter-spacing: 2px; }

.custom #nav_area ul#tabs li a:hover { color: #111; text-decoration: underline; }

.custom #nav_area ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }

.custom #nav_area ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }

.custom #nav_area ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }

.custom #nav_area ul#tabs li.rss a { padding-right: 16px; background:
url(’../images/icon-rss.gif’) 100% 50% no-repeat; float: right;}

.custom div.img
{
  margin: 0.5px 0.5px 20px;  
  border: 3px solid #ff6600;
  background: #ffcc00;
  height: auto;
  width: auto;
  float: left;
  text-align: center;
}		
.custom div.img img
{
  display: inline;
  margin: 4px;
  border: 1px solid #ffcc00;
}
.custom div.img a:hover img {border: 1px solid #ff9999;}
.custom div.desc
{
  text-align: center;
  font-weight: 20px;
  font-family:"Courier New", Arial, sans serif;
  color: #CC0066;
  background: #ff9999;
  width: 140px;
  margin: 3px;
}

.custom div.event
{
  margin:0.5px
  border: 2px solid #fffffff;
  background: #ffffff;
  height: auto;
  width: auto;
  float: left;
}	
.custom div.event img
{
  display: inline;
  margin: 1px;
  border: 1px solid #ffffff;
}
.custom div.event a:hover img {border: 1px solid #ffffff;}

.custom h2 { color: #808080; font-family: verdana; font-weight: bold; font-size: 1.5em;}
.custom h3 { color: #ff0066; font-family: arial black;}
.custom hr { color: #COCOCO;}
