/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

.googlemap img {
	max-width: none;
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
FONT FACE
*************************************************************************************/

@font-face {
    font-family: 'BadaBoomBBRegular';
    src: url('font/badabb_-webfont.eot');
    src: url('font/badabb_-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/badabb_-webfont.woff') format('woff'),
         url('font/badabb_-webfont.ttf') format('truetype'),
         url('font/badabb_-webfont.svg#BadaBoomBBRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'DigitalStripRegular';
    src: url('font/digistrip-webfont.eot');
    src: url('font/digistrip-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/digistrip-webfont.woff') format('woff'),
         url('font/digistrip-webfont.ttf') format('truetype'),
         url('font/digistrip-webfont.svg#DigitalStripRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'TwelveTonGoldfishRegular';
    src: url('font/twelve_ton_goldfish-webfont.eot');
    src: url('font/twelve_ton_goldfish-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/twelve_ton_goldfish-webfont.woff') format('woff'),
         url('font/twelve_ton_goldfish-webfont.ttf') format('truetype'),
         url('font/twelve_ton_goldfish-webfont.svg#TwelveTonGoldfishRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
body {
	background: #fff url(../images/bg.jpg) repeat left top;
	font: .81em/150% Arial, Helvetica, sans-serif;
	color: #221e1a;
}
a {
	color: #cc0000;
	text-decoration: none;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 0 0 1.2em;
	padding: 0;
}

/* list 
ul, ol {
	margin: 1em 0 1.4em 24px;
	padding: 0;
	line-height: 140%;
}
li {
	margin: 0 0 .5em 0;
	padding: 0;
}*/

/* headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 20px 0 .4em;
	color: #000;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}

/* reset webkit search input styles */
input[type=search] {
	-webkit-appearance: none;
	outline: none;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
#pagewrap {
	width: 980px;
	margin: 0 auto;
	background-color:#fff;
}

/************************************************************************************
HEADER
*************************************************************************************/
#header {
	position: relative;
	height: 200px;
	background: #fff url(../images/bg_header.jpg) no-repeat left top;
}

/* site logo */
#site-logo {
	position: absolute;
	top: 2px;
	z-index:1000;
}
#site-logo a {
	font: bold 30px/100% Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none;
}

#header-right {
	/*background: transparent url(../images/bg_header_right.png) repeat left top;*/
	position:absolute;
	right:0;
	top:0;
	z-index:105;
	width: 140px;
	padding:5px 15px 5px 5px;
	text-align:right;
}

#header-right a {
	color:#fff;
}

#header-right-2 {
	position:absolute;
	right:290px;
	top:0;
	z-index:100;
	width: 200px;
	background:#fff;
	opacity:.6;
	padding:5px;
}

/* site description */
#site-description {
	font: italic 100%/130% "Times New Roman", Times, serif;
	color: #000;
	position: absolute;
	top: 55px;
}

/* searchform */
#searchform {
	position: absolute;
	right: 10px;
	bottom: 85px;
	z-index: 100;
	width: 160px;
}
#searchform #s {
	width: 140px;
	float: right;
	background: #fff;
	border: none;
	padding: 6px 10px;
	/* border radius */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.2);
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}

.data-lugano {
	position: absolute;
	right: 10px;
	bottom: 55px;
	z-index: 100;
	width: 280px;
	text-align:right;
	color:#fff;
	text-shadow:3px 3px 3px #000;
	font-size:.9em;
}

/************************************************************************************
MAIN NAVIGATION
*************************************************************************************/
#main-nav {
	/*width: 100%;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;*/
	width: 100%;
	background: #ccc;
	margin: 0 auto;
	padding: 0px 0 0 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 100;

	background: #cc0000 url(../images/nav-bar-bg.png) repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), to(#cc0000));
	background: -moz-linear-gradient(top,  #ff0000,  #cc0000);
	background: linear-gradient(-90deg, #ff0000, #cc0000);
	/*
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	*/
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	
}

.mobile-nav {
	clear:both;
	width: 100%;
	margin: 0 auto;
	padding: 0px 0 0 0;
	background: #cc0000 url(../images/nav-bar-bg.png) repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), to(#cc0000));
	background: -moz-linear-gradient(top,  #ff0000,  #cc0000);
	background: linear-gradient(-90deg, #ff0000, #cc0000);
	height:20px;
	text-align:right;
}

.mobile-nav span {
	padding:5px;
}

.mobile-nav span a {
	color:#fff;
	text-decoration:none;
}

.mobile-nav-sub {
	/*display:none;*/
	background: #ccc;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ccc));
	background: -moz-linear-gradient(top,  #fff,  #ccc);
	background: linear-gradient(-90deg, #fff, #ccc);
	border-bottom:2px solid #c00;
	
}

/************************************************************************************
CONTENT
*************************************************************************************/
#content {
	background: #fff;
	margin: 0px 0 30px;
	padding: 7px 5px;
	width: 660px;
	float: left;
	/* rounded corner 
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;*/
	/* box shadow 
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);*/
}
#content input, #content select, #content textarea {
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	border:1px solid #ddd;
	padding:3px;
	margin:2px 3px 2px 2px;
	/*width:200px;*/
	background-color:#fff;
}
#content input:focus, #content select:focus, #content textarea:focus {
	background-color:#ffcabd;
	border:1px solid #f9a793;
	color:#000;
}

.article-content ul {
	width:auto; /* Per IE vedi il CSS specifico */
	background-color:#eee;
	border:1px solid #ccc;
	padding:10px 10px 10px 30px;
	/* CSS3 spicing */
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	margin:auto auto 10px auto;
}

.article-content h2 {
	font: normal 18px/100% Arial, Helvetica, sans-serif;
	font-weight:normal;
	color:#cc0000;
	line-height:20px;
	padding:0px 0 6px 0;
	border-bottom:1px solid #eee;
	text-shadow:3px 3px 3px #ccc;
	/* CSS3 spicing 
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;*/
}

.article-content h5 {
	font: normal 16px/80% Arial, Helvetica, sans-serif;
	font-weight:normal;
	color:#cc0000;
	line-height:20px;
	padding:0px;
	text-shadow:3px 3px 3px #ccc;
	/* CSS3 spicing 
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;*/
}

/* post */
.post {
	margin-bottom: 40px;
}
.post-title {
	margin: 0 0 5px;
	padding: 3px 3px 3px 3px;
	font: normal 20px/120% Arial, Helvetica, sans-serif;
	text-shadow:3px 3px 3px #ccc;
	background:#eee;
	/*background:#eee url(../repository/Image/icons/dark/24x24/plus.png) no-repeat  2px 50%;*/
}
.post-title a {
	text-decoration: none;
	color: #333;
}
.post-meta {
	margin: 0 0 10px;
	font-size: 90%;
}

/* post image */
.post-image {
	margin: 0 0 15px;
}

.overflow {
overflow:hidden;
}

.post-left {
float:left;
width:49%;
}

.post-right{
float:right;
width:49%;
}

.post-right img, .post-left img {
 	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/************************************************************************************
SOCIAL BUTTON
*************************************************************************************/
.social-button {
	margin:5px 0;
	padding:5px 0;
	border-top:1px solid #ccc;
}
.fblike {
	float:left;
}

.twit {
	float:right;
}

/************************************************************************************
SIDEBAR
*************************************************************************************/
#sidebar {
	width: 300px;
	float: right;
	margin: 0px 0 5px 0;
}
.widget {
	background: #fff;
	margin: 0 0 10px;
	padding: 7px 5px 0 5px;
}

#widget-white {
	background: #221e1a;
	color:#fff;
}

#widget-social {
	background: #eee;
	color:#231f20;
}

.widgettitle {
	margin: 0 0 5px;
	padding: 3px 3px 3px 3px;
	font: normal 20px/120% Arial, Helvetica, sans-serif;
	background:#ddd url(../repository/Image/icons/sq_br_right.png) no-repeat  5px 50%;	
}

#widgettitle-calendar {
	background:#2d2926 url(../repository/Image/icons/white_calendar.png) no-repeat  5px 50%;
	color:#fff;
}

#widgettitle-social {
	background:#dbd8c6 url(../repository/Image/icons/round_plus_icon&16.png) no-repeat  5px 50%;
	color:#231f20;
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	clear: both;
	border-top: solid 1px #eee;
}

/* flickr widget */
.widget .flickr_badge_image {
	margin-top: 10px;
}
.widget .flickr_badge_image img {
	width: 48px;
	height: 48px;
	margin-right: 12px;
	margin-bottom: 12px;
	float: left;
}

.servizi-sidebar {
	border-bottom:1px solid #ddd;
}

/************************************************************************************
FOOTER
*************************************************************************************/
.footer {
	background: #fff url(../images/bg_footer.jpg) repeat left top;
	clear: both;
	color: #ccc;
	font-size: 85%;
	height:200px;
}

.footer a {
	color: #666;
}

.footer-sponsor {
	margin:0 auto;
	padding:10px 10px 5px 10px;
}

.footer-sponsor img {
	margin:0 7px;
}

.footer-menu {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	/* gradient */
	background: #cc0000 url(../images/nav-bar-bg.png) repeat-x;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), to(#cc0000));
	background: -moz-linear-gradient(top,  #ff0000,  #cc0000);
	background: linear-gradient(-90deg, #ff0000, #cc0000);
	/* rounded corner 
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;*/
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
}

.footer-impressum {
	clear:both;
	background:#fff ;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align:right;
	color:#666;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }



.photos_container {
	width: 310px;
	height: 170px;
}
.photos_container_nav {
	width: 310px;
	height: 20px;
	float: left;
	text-align: center;
}
.photos_container_nav img {
	border:none;
}
.photos_container_element {
	height: 150px;
	float: left;
	width: 310px;
	text-align: center;
}
.photos_container_element ul {
	list-style-type: none;
	padding: 0px!important;
}
.photos_container_element li {
	float: left;
	height: 150px!important;
}
.photos_container_page {
	width: 310px;
}

/************************************************************************************
HOSTING TABLE
*************************************************************************************/

.hosting-table {
	width: 100%;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	text-shadow: 0 1px 0 #fff;
	color: #2a2a2a;
	background: #fafafa;
	background-image: -moz-linear-gradient(top, #fff, #eaeaea, #fff); /* Firefox 3.6 */
	background-image: -webkit-gradient(linear,center bottom,center top,from(#fff),color-stop(0.5, #eaeaea),to(#fff));
}

.hosting-table td {
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	border-bottom: 1px solid #cdcdcd;
	box-shadow: 0 1px 0 white;
	-moz-box-shadow: 0 1px 0 white;
	-webkit-box-shadow: 0 1px 0 white;
	white-space: nowrap;
	text-align: center;
}

/***  Body  ***/
.hosting-table tbody td {
	text-align: center;
	width:100px;
}

.hosting-table tbody td:first-child {
	width:auto;
	text-align: left;
}

.hosting-table td:nth-child(2) {
	background-color:#fbd6d6;
	border-right:1px solid #fff;
}

.hosting-table td:nth-child(3) {
	background-color:#f0f9c6;
	border-right:1px solid #fff;
}

.hosting-table td:nth-child(4) {
	background-color:#dedede;
}

/***  Header  ***/
.hosting-table thead td {
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	border-top: 1px solid #eaeaea;
}

.hosting-table thead td:first-child {
	border-top:none
}

/***  Footer  ***/
.hosting-table tfoot td {
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	border-bottom: 1px solid #dadada;
}

.hosting-table tfoot td:first-child {
	border-bottom:none
}
