/*
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 {	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #515559;
	font-weight: regular;
	line-height: 20px; background-image:url('images/o2_background_gradient.jpg'); background-repeat: repeat-x; }
table {font-size:inherit; font:100%; margin:5px 0 15px 0;}

/* ---------------------------------------- gerneral text styles */


.custom {color:#515559;}

.custom p,
.custom ol,
.custom h2, 
.custom h3, 
.custom h4 {padding: 0 8px;}

.custom p,
.custom ul
.custom li

.custom p, 
.custom li {line-height:1.4em;}

.custom h1 {
  color: #515559;
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif;
  /*background-color: #FFF;*/
  font-weight: normal;
  letter-spacing: -10;
  line-height:26px;
}
.custom h2 {
  color: #515559;
  font-size: 36px;
  font-family: Arial, Helvetica, sans-serif;
  /*background-color: #FFF;*/
  font-weight: normal;
  letter-spacing: -10;
}
.custom h3{
  color: #9299A1;
  font-size: 19px;
  font-family: Arial, Helvetica, sans-serif;
  /*background-color: #FFF;*/
  font-weight: normal;
}
.custom h4 a, h4 a:active, h4 a:visited, h4 a:hover{
	color: #ffffff;	
}
.custom a {
  color:#0086c3;
  text-decoration: none;
}
.custom a:hover {
  color:#0086c3;
  /*background-color: #F5F5F5;*/ 
}


/* ---------------------------------------- gerneral list styles */ 

.custom #header {
padding-top: 1em;
padding-bottom: 1em;
}
.custom #page {
/* rounded corners */
-moz-border-radius: 20px; 
-webkit-border-radius: 20px;
}


.custom #container {
position: relative;
float: left;
left: 150px;
top: 100px;
    border: none;
}

/* ----o2 Logo*/

.custom #o2logo {
position:relative;
float: left;
width: 78px;
height: 77px;
top: 30px;
left: 150px;

background-image: url('images/o2logo.gif');
}

.custom #content ul,
.custom #content ol {margin-left:32px;}

.custom #content ul li {list-style:disc outside !important;}
.custom #content ol li {list-style:decimal outside;}

.custom #content ol li p {padding:0;}

.custom #content ul.guided li, 
.custom #content ul.actions li {list-style:none;}

.custom #content ul.guided li span,
.custom #content ul.actions li {color:#000;}


/* nav bar styling */

.custom .menu {
        position: relative;
	border: none;
	background-color: transparent;
	color: rgb(136, 204, 255);
	top: 110px;
        left: 160px;

}
.custom .menu a {
	border: none;
	background-color: transparent;
        color: rgb(136, 204, 255);
	font-size: 28px;
	letter-spacing: normal;
	font-family: Arial, Helvetica, sans-serif;
text-transform: none;
}
.custom .menu a:hover {
	background-color: transparent;
	color: #92B8FF;
}
.custom .menu .current a {
	background-color: transparent;
	color: rgb(136, 204, 255);
}
.custom .menu ul a {
	background-color: transparent;
	color: rgb(136, 204, 255);
}

/*footer*/

.custom #footer {
  clear: both;
  padding: 40px 0px 30px 15px;
  background: #ffffff;
  height: 40px;
}
#footer .footer_text{
	float: left;
}
#footer .footer_text p {
  color:#000000;
  padding: 0px;
  margin: 0px;
  font-size: 18px;
  font-family: arial;
}
#footer .footer_text .tel_link{
	padding-top: 4px;
	font-size: 13px;
	color: #9299a1;
	font-family: arial;
	font-weight: normal;
}
#footer .footer_text .tel_link a, #footer .footer_text .tel_link a:visited, #footer .footer_text .tel_link a:active {
  color: #0086c3;
  text-decoration: none;
}
#footer .footer_text .tel_link a:hover {
  color: #0086c3;
  text-decoration: underline;
}
#footer #menu-footer{
  float: right;
}

#footer #menu-footer ul.navlist{
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-family: arial;
	font-weight: normal;
	font-size: 13px;
	padding-top: 23px;
	/*text-transform: Capitalize;*/
}
#footer #menu-footer ul.navlist li { 
	display: inline; 
}
#footer #menu-footer ul.navlist li img{
	float:left;
	margin:0px;
	padding:0px;
} 
#footer #menu-footer ul.navlist li a, 
#footer #menu-footer ul.navlist li a:visited, 
#footer #menu-footer ul.navlist li a:active, 
#footer #menu-footer ul.navlist li a:hover {
	float: left;
	color: #9299a1;
	padding-right: 0px;
	line-height:15px;
}
