/*
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/
*/
#header {
	background: url(../images/bg_header.jpg) no-repeat left 25px;
	padding: 2.2em 0 0 0em;
	position: relative;
}
.menu .access {
	float: right;
}
.menu .access a, .menu .rss a:hover {
	padding-right: 16px;
	background: transparent;
	border: none;
}
.menu .access a:hover {
	text-decoration: underline;
}
/*---:[ #header dl ]:---*/
#header dl.header_dl {
	position: absolute;
	margin: 20px 0 0 30px;
	padding: 0;
	top: 30px;
	left: 600px;
	color: #333333;
	height: 220px;
}
#header dl.header_dl dt {
	font-weight: bold;
	font-size: 2.0em;
}
#header dl.header_dl dd {
	background: url(../images/dd.jpg) no-repeat left top;
	padding: 0 0 0 30px;
	margin: 10px 0 10px 0;
	font-size: 1.7em;
}
#header #logo {
	font-size: 3.6em;
	line-height: 1.167em;
}
#header #logo a {
	width: 450px;
	height: 65px;
	padding: 0;
	margin: 0;
	display: block;
}
#header #tagline {
	font-size: 1.2em;
	font-style: italic;
	line-height: 1.429em;
	margin: 110px 0 0 0;
	padding: 3px 0 3px 10px;
	border-top:3px double #eee;  
}
/*-------------sidebar ul text widget-----------*/
#sidebars a.box1 {
	background: #EFEFEF url(../images/box1.png) no-repeat center;
	border: 1px solid #DDDDDD;
	color: #333;
	font-size: 1.3em;
	width: 240px;
	height: 150px;
	display: block;
	margin: 0;
	padding: 7px;
}
#sidebars a.box2 {
	background: #EFEFEF url(../images/box2.png) no-repeat -15px 70px;
	border: 1px solid #DDDDDD;
	color: #333;
	font-size: 1.3em;
	width: 240px;
	height: 148px;
	display: block;
	margin: 0;
	padding: 7px;
}
#sidebars a.box3 {
	background: #EFEFEF;
	border: 1px solid #DDDDDD;
	color: #333;
	font-size: 1.3em;
	width: 240px;
	display: block;
	margin: 0;
	padding: 7px;
}
#sidebars span.box_iscriviti {
	background: #EFEFEF;
	border: 1px solid #DDDDDD;
	color: #247ED1;
	font-size: 1.2em;
	line-height: 140%;
	width: 240px;
	display: block;
	margin: 0;
	padding: 7px;
}

/*---:[ Stile per MEMBER PLUGIN ]:---*/

#member_plugin {
	font-family: Georgia, "Times New Roman", Times, serif;
	float: left;
	position: relative;
	width: 720px;
	padding: 10px 0 10px 0;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}
#member_plugin form {
	float: left;
	width: 200px;
	padding-right: 10px;
}
#member_plugin p.box_yellow {
	font-size: 1em;
	float: right;
	width: 500px;
	background-color:#FFC;
	padding:3px;
	border:2px solid #FFCCCC;
	margin:0 0 5px;
}
#member_plugin form input {
	width: 192px;
	height: 47px;
	background: none;
	border: none;
}
#member_plugin p.box_yellow a {
	color: #247ED1;
	font-size: 1em;
}
form input.input_pay {
	width: 192px;
	height: 47px;
	background: none;
	border: none;
}
/*---:[ Stile table aziende ]:---*/

table#aziende {
	border-collapse:collapse;
	color: #343434;
	margin: 10px 0 10px 0;
	padding: 15px;
}
table#aziende td {
	padding: 5px;
	}
table#aziende td.title {
	color: #0E5291;
	font-size: 120%;
}
td.title_yellow {
	color: #0E5291;
	font-size: 120%;
	background: #FFFFEC;
	border-right:1px #ccc solid;
	border-collapse:collapse;
}
#table tr {
	border-bottom:1px #ccc solid;
	border-collapse:collapse;
	color: #343434;
}
table#aziende td.grey {
	background: #F2F4F4;
}
table#aziende td.yellow {
	background: #FFFFEC;
	border-right:1px #ccc solid;
	border-collapse:collapse;
}

.clear {
	clear: both;
	}