/*
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/
*/
/* ------------------------------------------------------------------------------------------ */

/* This sets the backgroung of the entire website. It came from Thesis tutorial. */

/* Push the main content container down, and format it */
.custom #container {
   margin-top: .2em;
   margin-bottom: .5em;
   padding: 0.3em; 
   background: #33332f; 
   border: 0.2em solid #3e3e3a; 
   width:102.3em;
}

/* Format the color of the background */
body.custom { 
 background: #44443f; 
 font-family:Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif; 
}

/* Make the content container background white */
.custom #page { background: #fff; padding:2.2em; }


/*--- Customize Header Logo (Green & Gray Bar) ---*/
.custom #header { 
   border-bottom:none;
   height:99px;
   width: inherit;
   padding-top:0;
   padding-bottom:0;
   background:url('/images/header_back.jpg') repeat-x; 
}

/* Format the company name */
.custom #header #logo a {
   color: white;
   position: absolute;
   margin-left: 350px;
   margin-top: 8px;
}

/* Format the tagline */
.custom #header #tagline {
   position: absolute;
   margin-left: 440px;
   margin-top: 45px;
}


/* OCB Green & Gray bar*/
/*positioning images in header*/
.custom #headerimages {
position: relative;
width: 900px;
height: 70px;
bottom: 55px;
}

.custom #headerimages ul {
list-style: none;
margin: 0;
padding: 0;
}

.custom #headerimages .ocb-logo{
position: absolute;
bottom: -5.0em;
left: 26em;
}

/*
.custom #headerimages .circle{
position: absolute;
bottom: 15em;
right: 5em;
}
*/

/* Push content down off of menu bar */
.custom #content_box {
padding-top: 5px;
}

/* Hide the title on all the pages */
.custom .headline_area h2 {display: none;}

/* This causes the "Comments on this entry are closed to go away" */
.custom .comments_closed p {display: none ;}

/*change the background color of unselected tab when the cursor hovers over it*/
.custom ul#tabs li a:hover { background: #72A229 }

/* Remove Verticle divider between sidebars and main area */
.custom #content_box {background: none;}

/* Change backgroud color of multimedia box */
.custom #image_box {background: none}

/* Remove border line from under multimedia box */
.custom #image_box {border-bottom: none}

.custom #tagline{
	display:none;
}
.custom #logo a{
	display:none;
}
.custom #logo{
 background:url(/images/azcomputer2logo.JPG) no-repeat ;
 width:550px;
height:99px;
}


