/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/
.ads-dreta {
	margin: 20px 0 10px;
}
	*
	{
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	html
	{
		background: #f7f7f7 url('images/bg.jpg');
		height: 100%;
	}

	body
	{
		font-family: 'Open Sans', sans-serif;
		font-size: 12pt;
		color: #696969;
		font-weight: 300;
		background: url('images/bgshadow.png') top left no-repeat;
		background-size: 100% 100%;
	}
	
	a
	{
		color: #666;
		text-decoration: underline;
	}
	
		a:hover
		{
			text-decoration: none;
		}
	
	h1, h2, h3, h4, h5, h6
	{
		color: #444;
		font-weight: 800;
	}
	
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
	{
		color: inherit;
		text-decoration: none;
		outline: 0;
	}

	strong
	{
	}

	form
	{
	}
	
		form input,
		form select,
		form textarea
		{
			-webkit-appearance: none;
		}
			
	br.clear
	{
		clear: both;
	}
	
	p, ul, ol, dl, table
	{
		margin-bottom: 2em;
	}
	
	section,
	article
	{
		margin-bottom: 5em;
	}
	
	section > :last-child,
	article > :last-child
	{
		margin-bottom: 0;
	}

	section:last-child,
	article:last-child
	{
		margin-bottom: 0;
	}

	.image
	{
		display: inline-block;
		outline: 0;
	}
	
		.image img
		{
			display: block;
			width: 100%;
			border-radius: 8px;
		}

	.image-full
	{
		display: block;
		width: 100%;
		margin: 0 0 2.5em 0;
	}
	
	.image-left
	{
		float: left;
		margin: 0 2em 2em 0;
	}
	
	.image-centered
	{
		display: block;
		margin: 0 0 2.5em 0;
	}

		.image-centered img
		{
			margin: 0 auto;
			width: auto;
		}
		.txt {
			width: 300px;
			height: 50px;
			font-size: 2em;
		}
		.bread {
			margin-top: -40px;
		}
		.button
			{
				display: inline-block;
				background: #0090c5;
				color: #fff;
				text-decoration: none;
				border-radius: 6px;
				font-weight: 800;
				outline: 0;
				-moz-transition: background-color .25s ease-in-out;
				-webkit-transition: background-color .25s ease-in-out;
				-o-transition: background-color .25s ease-in-out;
				-ms-transition: background-color .25s ease-in-out;
				transition: background-color .25s ease-in-out;
			}
			
				.button:hover
				{
					background: #10a0d5;
				}
			
				.button:active
				{
					background: #20b0e5;
				}
			
				.button-icon
				{
					position: relative;
				}
				
					.button-icon:after
					{
						content: '';
						display: inline-block;
						width: 54px;
					}
				
					.button-icon:before
					{
						content: '';
						display: inline-block;
						width: 48px;
						height: 48px;
						background: url('images/icons.png');
						position: absolute;
						right: 0.75em;
						top: 50%;
						margin-top: -24px;
					}
					
					.button-icon-rarrow:before
					{
						background-position: 0px 0px;
					}
					
					.button-icon-paper:before
					{
						background-position: -48px 0px;
					}
			
					.button-icon-question:before
					{
						background-position: 0px -48px;
					}
			
				.button-alt
				{
					background: #f1f1f1;
					color: #444;
				}
		
					.button-alt:hover
					{
						background: #e8e8e8;
					}
		
					.button-alt:active
					{
						background: #e4e4e4;
					}
	ul.style1
	{
	}
	
	ul.style2
	{
	}
	
		ul.style2 li
		{
		}
			
	ol.style1
	{
	}

	.byline
	{
		display: block;
	}

	header
	{
		margin: 0 0 2em 0;
	}
	
		header h2, header h3
		{
			margin: 0 0 0.25em 0;
		}
		
		header .byline
		{
			margin: 0;
		}

	footer
	{
		margin: 2.5em 0 0 0;
	}
	
	.box
	{
		background: #fff;
		border-radius: 6px;
		box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.015);
		box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.05);
	}

/*********************************************************************************/
/* Widgets                                                                       */
/*********************************************************************************/

	.widget-links
	{
	}

	.widget-thumbnails
	{
	}

		.widget-thumbnails .grid
		{
			margin-bottom: 2.5em;
		}

	.widget-contact
	{
	}
	
		.widget-contact ul
		{
			overflow: hidden;
			position: relative;
			left: -4px;
			top: 4px;
			margin-bottom: 1.5em;
		}
		
			.widget-contact ul li
			{
				display: block;
				float: left;
			}

				.widget-contact ul li a
				{
					display: block;
					width: 48px;
					height: 48px;
					background: url('images/icons.png');
					text-indent: -9999em;
					outul line: 0;
					opacity: 0.75;
					-moz-transition: opacity .25s ease-in-out;
					-webkit-transition: opacity .25s ease-in-out;
					-o-transition: opacity .25s ease-in-out;
					-ms-transition: opacity .25s ease-in-out;
					transition: opacity .25s ease-in-out;
				}
				
					.widget-contact ul li a:hover
					{
						opacity: 1.0;
					}
				
					.widget-contact ul li a.twitter
					{
						background-position: -48px -48px;
					}
				
					.widget-contact ul li a.facebook
					{
						background-position: -96px -48px;
					}
				
					.widget-contact ul li a.dribbble
					{
						background-position: -144px -48px;
					}
				
					.widget-contact ul li a.googleplus
					{
						background-position: -192px -48px;
					}
	
/*********************************************************************************/
/* Wrappers                                                                      */
/*********************************************************************************/

	#header-wrapper
	{
	}
	
	#banner-wrapper
	{
	}
	
	#main-wrapper
	{
		background: #fff;
		box-shadow: 0px 3px 0px 0px rgba(0,0,0,0.05);
	}
	
	#footer-wrapper
	{
	}
	
/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#header
	{
		position: relative;
	}
	
/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

	#logo
	{
		overflow: hidden;
	}

		#logo h1
		{
			background: #00abc3;
			color: #fff;
			border-radius: 6px;
			font-family: 'Oleo Script', serif;
			font-weight: 400;
		}
		
		#logo span
		{
			font-weight: 800;
		}
	
/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

	#banner
	{
		position: relative;
	}
	
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

	#footer
	{
	}
	
		#footer a
		{
			color: inherit;
		}
	
	#copyright
	{
		color: #aaa;
	}
	
		#copyright a
		{
			color: inherit;
		}
		
/* tables */
table.tablesorter {
	border: 1px solid #CCC;
	margin:10px 0pt 15px;
	width: 100%;
	text-align: left;
	table-layout: fixed;
}
table.tablesorter tbody {
font-size: 0.8em;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	background-color: #0090c5;
	padding: 4px;
	color: #FFF;
	word-wrap: break-word;
}
table.tablesorter thead tr .header {
	
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter tbody td {
	color: #3D3D3D;
	padding: 4px;
	background-color: #FFF;
	vertical-align: top;
	word-wrap: break-word;
}
table.tablesorter tbody tr:nth-child(even) td {
    background-color: #F0F0F6;
}
table.tablesorter tbody tr.odd td {
	background-color:#F0F0F6;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url('images/asc.gif');
}
table.tablesorter thead tr .headerSortDown {
	background-image: url('images/desc.gif');
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #8dbdd8;
}
table.tablesorterPager {
	padding: 10px 0 10px 0;
	background-color: #D6D2C2;
	text-align: center;
}
table.tablesorter span {
	padding: 0 5px 0 5px;
}
table.tablesorter input.prev {
	width: auto;
	margin-right: 10px;
}
table.tablesorter input.next {
	width: auto;
	margin-left: 10px;
}
table.tablesorter input {
	font-size: 8px;
	width: 50px;
	border: 1px solid #330000;
	text-align: center;
}
table.tablesorter a {
	text-decoration: none;
}
table.tablesorter a:hover {
	text-decoration: underline;
}
.right{
	text-align: right;
}
ul{list-style-type:none}ul.pagination{margin:0;padding:0;height:100%;overflow:hidden}ul.pagination li.details{padding:7px 10px 7px 10px;color:#202020;font-size:0.9em}ul.pagination li{float:left;margin:0;padding:0;margin-left:5px;padding-bottom:1px}ul.pagination li:first-child{margin-left:0}ul.pagination li a{display:block;text-decoration:none;border:solid 1px;border-radius:3px;padding:6px 9px 6px 9px;color:#08c;border-color:#bebebe;background:#FFF}ul.pagination li a:hover,ul.pagination li a.current{color:#fff;box-shadow:0 1px #ededed;text-shadow:0 1px #3c3c3c;border-color:#202020;background:#646464;background:-moz-linear-gradient(top,#b1b1b1 1px,#808080 1px,#646464);background:-webkit-gradient(linear,0 0,0 100%,color-stop(0.02,#b1b1b1),color-stop(0.02,#808080),color-stop(1,#646464))}
.center {
  text-align: center;
}