@charset "utf-8";
/* CSS Document */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #636466;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-color: #FCFCFC;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	line-height:21px;

	background-repeat: repeat-x;
}
/* Commonly used to style page titles. */
h1, h2, h3, h4, h5, h6 {
	text-align: left;
	font-family: 'OpenSansCondensedLight', Arial, sans-serif;
	color: #003D7B;
}
h1 {
	font-size: 28px;
	line-height: 1.2em;
	padding-top: 10px;
	padding-bottom: 2px;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 24px;
	line-height: 1.2em;
}
h3 {
	font-size: 22px;
	line-height: 1.2em;
}
h4 {
	font-size: 16px;
	line-height: 1.2em;
}

/* Sets the style for unvisited links. */
a, a:link {
	color: #003D7B;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links.
a:visited {
	color:  #003282;
	font-weight: bold;
	text-decoration: none; 
}*/
/* Sets the style for links on mouseover. */
a:hover {
	color: #00ADD1;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color:  #00ADD1;
}
/* Sets the style for a link that is being activated/clicked.*/ 
a:active {
	color:  #00ADD1;
}
ul li {
	list-style-type: square;	
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
	-moz-box-shadow: 0 0 5px #676464;
	-webkit-box-shadow: 0 0 5px #676464;
	box-shadow: 0 0 5px #676464;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}
#outerWrapperHome {
	background-color: #fff; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapperSub {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 182px;/*filter: alpha(opacity=40);  /*per Internet Explorer 6-7*/	/*filter: "alpha(opacity=40)"; /*per Internet Explorer 8*/	/*opacity: .4;*/
	background-color: #FFF;	/*background-image: url(images/background.png);
	background-repeat: repeat-x;*/
}

#outerWrapper #spacemenu {
	width: 960px;
	height: 40px;
	padding-top: 1px;
	list-style-type: none;
	float: right;
	margin-top: 0px;
	background-color: #003D7B;
	padding-bottom: 4px;
}
#outerWrapper #spacemenu_int {
	width: auto;
	height: 40px;
	padding-top: 1px;
	list-style-type: none;
	float: right;
}
#outerWrapper #contentWrapper {
	margin: 0px;
	padding: 0px;
}

#outerWrapper #contentWrapper #leftColumn {
	/* Sets the right border properties for an element using shorthand notation */
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	height: auto;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin: 0px;
}

	
#outerWrapper #contentWrapper #rightColumn {
	/* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	height: auto;	
}

#menudx {
	/*background-color: #FFF;  Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	height: auto;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #C9C9C9;
	background-color: #003282;
	-moz-border-radius: 1em 5em 1em 1em;
	-webkit-border-radius: 1em 5em 1em 1em;
	border-radius: 1em 5em 1em 1em;
	margin-top: 0px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0;
	margin-right: 180px;
	margin-bottom: 20px;
	margin-left: 210px;
	padding: 10px;
}
#contentspace {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	padding: 10px;
}
#outerWrapper #contentWrapper #contentbig {
	margin-top: 0;
	padding: 10px;
	line-height: 1.4em;
	text-align: justify;
}

#outerWrapper #contentWrapper #contentbig p{
	padding-right: 20px;
	padding-left: 20px;
}
#outerWrapper #contentWrapper #contentbig h1, #outerWrapper #contentWrapper #contentbig h2, #outerWrapper #contentWrapper #contentbig h3, #outerWrapper #contentWrapper #contentbig h4 {
	margin-right: 20px;
	margin-left: 20px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */

#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
}
#outerWrapper #footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	color: #FFF;
	text-align: right;
	font-size: 11px;
	font-family: Tahoma, Geneva, sans-serif;
	line-height: 1.4em;
	background-color: #003D7B;
	margin: 0px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #footer p{
	padding-top: 20px;
}
#outerWrapper #footer h3{
	padding-top: 8px;
	text-align: right;
	font-size: 14px;
}
#outerWrapperSub #footer {
	background-color: #FFF; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E5E5E5;
	color: #666;
	text-align: right;
	font-size: 11px;
	margin-top: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapperSub #footer p{
	padding-top: 20px;
}
#outerWrapperSub #footer h3{
	padding-top: 8px;
	text-align: right;
	font-size: 14px;
}
#logo {
	float: left;
}

#slogan {
	position:absolute;
	margin:0;
	height: 53px;
	width: 675px;
	float: right;
	top: 50px;
	left: 629px;
}
.photo {
	background-color: #FFF;
	padding: 2px;
	border: 1px solid #333;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.photodx {
	background-color: #FFF;
	padding: 2px;
	border: 1px solid #333;
	float: right;
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 20px;
}
.photosx {
	background-color: #FFF;
	padding: 2px;
	border: 1px solid #333;
	float: left;
	margin-top: 8px;
	margin-left: 8px;
	margin-bottom: 8px;
	margin-right: 20px;
}

.imgshadow { /* Better style on light background */
	background:#FFFFFF;
	padding:4px;
	border:1px solid #777777;
	margin-top:5px;
	-moz-box-shadow:0px 0px 2px #666666;
	-webkit-box-shadow:0px 0px 2px #666666;
	box-shadow:0px 0px 5px #666666;
	margin-right: 20px;
	margin-bottom: 10px;
}

.boxhome {
	padding:20px;
	-moz-border-radius: 5em 1em 5em 1em;
	-webkit-border-radius: 5em 1em 5em 1em;
	border-radius: 5em 1em 5em 1em;
	background-color: #E8E8E8;
	border-top-color: #C9C9C9;
	border-right-color: #C9C9C9;
	border-bottom-color: #C9C9C9;
	border-left-color: #C9C9C9;
	margin: 10px;
}
.boxes {
	padding:5px;
}
.line 	{
	border-top-width: 4px;
	border-top-style: dotted;
	border-top-color: #E8E8E8;
}

.box {
	float: left;
	width: 430px;
	padding-top: 0;
	padding-right: 12px;
	padding-bottom: 20px;
	padding-left: 12px;
	margin-right: 5px;
	margin-left: 5px;

}
.box h3 {
	font-size: 16px;
	padding-bottom:0px;
	text-align: left;
	line-height: 1.2em;
	color: #666;
	padding-top: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
}
.box p {
	margin-left: 5px;
	text-align: justify;
	line-height: 1.2em;
}
.box li {
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
	line-height: 1.2em;
}

.boxbig span {
	display: block;
	height: 350px;
}
.boxsx {
	float:left;
	width:410px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.boxdx {
	float:right;
	width:465px;
	background-color: #E8E8E8;
	border: 1px solid #CCC;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 20px;
}
.boxevidence {
	background-color: #E8E8E8;
	border: 1px solid #CCC;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	width: auto;
}
.boxevidencewhite {
	float:left;
	width:350px;
	padding: 2px;
	border: 1px solid #000;
	margin: 10px;
}

.boxes h1 {
	color: #00AEEF;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2em;
	padding-top: 10px;
	border-bottom-width: 0px;
	padding-bottom: 5px;
	margin-top: 10px;
	text-transform: uppercase;

}
.boxes h2{
	color:  #00AEEF;
	font-size: 16px;
	font-weight: bold;
	margin-top: 5px;
}
.boxes h2.presentation{
	color:  #00AEEF;
	font-size: 18px;
	font-weight: bold;
	margin-top: 5px;
	text-transform: none;
	padding-right: 10px;
	padding-bottom: 10px;
}
.boxes h3{
	color:  #666;
	font-weight: bold;
	font-variant: normal;
	font-size: 14px;
	line-height: 1.2em;
	margin-top: 5px;
}
.boxes h4{
	padding-bottom: 8px;	
}
.boxpres {
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	background-color: #00AEEF;
	border-top-color: #C9C9C9;
	border-right-color: #C9C9C9;
	border-bottom-color: #C9C9C9;
	border-left-color: #C9C9C9;
	float: left;
	width: auto;
	margin-top: 10px;
	padding: 5px;
}
.boxpreswhite {
	float: right;
	width: auto;
	padding: 2px;
	margin: 5px;
	border: 1px solid #000;
}
.boxpres_sx {
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	background-color: #00AEEF;
	border-top-color: #C9C9C9;
	border-right-color: #C9C9C9;
	border-bottom-color: #C9C9C9;
	border-left-color: #C9C9C9;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin: 10px;
}
.boxpres h3, .boxpres_sx h3{
	color:  #FFF;
	font-weight: bold;
	margin-top: 15px;
	font-variant: normal;
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 1.2em;
}
.boxpres p, .boxpres_sx p{
	color:  #FFF;
}
.boxpres a, .boxpres a:link, .boxpres_sx a, .boxpres_sx a:link {
	color:  #FFF;
	text-align: center;
}
.boxpres a:hover, .boxpres_sx   a:hover {
	color:  #FFF;
	text-decoration: underline;
}
.boxinfo {
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	float: left;
	width: auto;
	margin-top: 10px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 5px;
	border: 1px solid #F7941E;
	background-color: #FFF;
}
.boxbig {
	float: left;
	width: 280px;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	text-align: left;
	margin-right: 5px;
}
.boxbig_top2 {
	float: left;
	width: 350px;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	text-align: left;
	margin-right: 5px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}
.boxbig_4 {
	float: left;
	width: 200px;
	padding-top: 8px;
	padding-right: 12px;
	padding-bottom: 8px;
	padding-left: 12px;
	text-align: left;
	margin-right: 5px;
}
.boxbig_5 {
	float: left;
	width: 150px;
	padding-top: 8px;
	padding-right: 2px;
	padding-bottom: 8px;
	padding-left: 2px;
	text-align: left;
	margin-right:2px;
}
.boxsmall {
	float: left;
	width: 250px;
	text-align: left;
	margin-right: 2px;
	border: 1px solid #CCC;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	background-color: #EBEBEB;
}
.boxsmall h3 {
	padding-top: 10px;
}
.boxbigpage_2 {
	float: left;
	width: 630px;
	margin-right: 22px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}
.boxsponsor {
	float: left;
	width: 440px;
	text-align: left;
	margin: 5px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	border: 1px solid #C5D6DE;
	padding: 5px;
	background-color: #E2EBEF;
}
.boxsponsor h2 {
	margin-top: 10px;
	margin-bottom: 10px;	
}
.boxsponsor .space{
	display: block;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.boxsponsor.white  {
	background-color: #FFF;
}
.boxbigpage {
	float: left;
	width: 450px;
	text-align: left;
	margin-right: 10px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}
.boxbigpage h2 {
	line-height: 0.5em;
	padding-top: 15px;
}
.boxbighome {
	float: left;
	width: 290px;
	height: 430px;
	text-align: left;
	margin-right: 7px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	border: 1px solid #CCC;
	margin-left: 13px;
}
.boxbighome h1 {
	font-size: 20px;
}
.boxbighome span{
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 12px;
}
.boxbighome img {
	-moz-border-radius: 1em 1em 0em 0em;
	-webkit-border-radius: 1em 1em 0em 0em;
	border-radius: 1em 1em 0em 0em;
}
.boxbighome1 {
	float: left;
	width: 290px;
	height: 430px;
	text-align: left;
	margin-right: 7px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	border: 1px solid #CCC;
	margin-left: 13px;
}
.boxbighome1 h1 {
	font-size: 20px;
}
.boxbighome1 span{
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 12px;
}
.boxbighome1 img {
	-moz-border-radius: 1em 1em 0em 0em;
	-webkit-border-radius: 1em 1em 0em 0em;
	border-radius: 1em 1em 0em 0em;
}
.boxbig3 {
	float:left;
	width:260px;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #CCC;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
}
.evidence  {
	background-color: #F4F4F4;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 5px;
	margin-bottom: 10px;
}

.fleft {float:left}
.fright {float:right}
.clear {clear:both}
.fleft_space {
	float: left;
	margin-right: 10px;
}
.margin_r {
	float: left;
	margin-right: 20px;
}

#search-form {
	margin:0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
}
#search-form fieldset {
	display:inline;
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;

}
#search-form input.text {
	width:98px;
	border:1px solid #C9C9C9;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin:0px;
}
#search-form input.submit {
	width:70px;
	border:none;
	color:#fff;
	cursor:pointer;
	text-align:center;
	background-color: #F7941E;
	font-weight: bold;
	-moz-border-radius:6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	font-size: 11px;
	height: 25px;
	margin-bottom: 4px;
	margin-left: 6px;
	margin-top: 0px;
	padding: 4px;
	line-height: 18px;
}
 */
blockquote.style {
	padding: 8px;
	margin: 20px;
	background-image: url(images/open.png);
	background-position: left top;
	background-repeat: no-repeat;
	text-indent: 23px;
	font-size: 14px;
	line-height: 1.2em;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #003282;
	border-bottom-color: #003282;
  }
blockquote.style span {
	display: block;
	background-image: url(images/close.png);
	background-repeat: no-repeat;
	background-position: right bottom;
   }
.space {
	margin-right: 4px;
	margin-left: 0px;
	padding: 0px;
	display: block;
}
hr {
	color: #01ABCE;
	height: 1px;
	border: none;
	background-color: #01ABCE;
}
.longtitle {
	font-weight: bold;
	font-variant: normal;
	font-size: 22px;
}
.video {
	padding: 1px;
	border: 1px solid #000;
	margin: 0px;
}
.bottone, a.bottone  {
	padding: 14px;
	font-size: 16px;
	color: #FFF;
	background-color: #00ADD1;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #00ADD1;
	background-color: #00ADD1;
	background-image: -moz-linear-gradient(top, #00ADD1, #0f6d8a);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#00ADD1), to(#0f6d8a));
	background-image: -webkit-linear-gradient(top, #00ADD1, #0f6d8a);
	background-image: -o-linear-gradient(top, #00ADD1, #0f6d8a);
	background-image: linear-gradient(to bottom, #00ADD1, #0f6d8a);
	background-repeat: repeat-x;
  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ADD1', endColorstr='#0f6d8a', GradientType=0);
	border-color: #00ADD1 #00ADD1 #00ADD1;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #00ADD1;
	margin-top: 10px;
	margin-bottom: 10px;
	*display:inline;   /* hack per IE 6 */
	* + display:inline;   /* hack per IE 7 */
	display: inline-block;
	
	font-weight: bold;
	text-decoration: none;
}
.bottone:hover,
.bottone:active,
.bottone.active,
.bottone.disabled,
.bottone[disabled] {
	background-color: #0f6d8a;
	background-image: -moz-linear-gradient(top, #0f6d8a, #00ADD1);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0f6d8a), to(#00ADD1));
	background-image: -webkit-linear-gradient(top, #0f6d8a, #00ADD1);
	background-image: -o-linear-gradient(top, #0f6d8a, #00ADD1);
	background-image: linear-gradient(to bottom, #0f6d8a, #00ADD1);
	background-repeat: repeat-x;
  	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f6d8a', endColorstr='#00ADD1', GradientType=0);
   *background-color: #0f6d8a;
	text-decoration: none;
}
.bottone:active,
.bottone.active {
    background-color: #0f6d8a \9;
    text-decoration: none;
}
.italiano {
	color: #A0A0A0;
	text-align: right;
}
.italianoleft {
	color: #A0A0A0;
	text-align: left;
}

a.popup {
	position: relative;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
a.popup:hover { border: 0;}
a.popup div { display: none; }
a.popup:hover div {
	position: absolute;
	display: block;
	text-decoration: none;
	z-index: 99;
	right: -100px;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	margin: 10px;
	padding: 20px;
	border: 1px solid #FFBA75;
	height: auto;
	width: 300px;
	background-color: #FFFFFF;
	font-size: 12px;
	font-weight: normal;
	color: #636466;
	bottom: -30px;
}
a.popup div img {

	padding-left: 40px;	
	
}
a.popup div p {
	padding-bottom: 8px;
	line-height: 15px;
}
a.popup div h1 {
	padding-bottom: 4px;
	margin-bottom: 8px;
}
a.opacity img {
 filter:alpha(opacity=70); 
 -moz-opacity: 0.7; 
 opacity: 0.7;
 } 
a.opacity:hover img {
 filter:alpha(opacity=100); 
 -moz-opacity: 1.0; 
 opacity: 1.0;
 }  


 /* slider */
#slider1 {
    width: 960px; /* important to be same as image width */
    height: 300px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}

#slider1Content {
	width: 960px;
	margin: 0px;
}
.slider1Image {
	float: left;
	position: relative;
	left: -40px;
	display: none;

}
.slider1Image span {
	position: absolute;
	font: 18px/26px 'OpenSansCondensedLight', Arial, sans-serif;
	padding: 20px;
	width: 920px;
	background-color: #003D7B;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
	color: #fff;
	display: none;
}
.clear {
	clear: both;
}
.slider1Image span strong {
	font-size: 38px;
	line-height: 1.4em;
}
.left {
	top: 0;
    left: 0;
	width: 290px !important;
	height: 260px;
}
.right {
	right: 0;
	bottom: 0;
	width: 290px !important;
	height: 260px;
	float: right;
	top: 0px;
}
small {
	font-size: 12px;
	color: #003D7B;	
}
.didascalia 
            {
	font-size: 11px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #666;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	border: 1px solid #CCC;
}
.didascaliasx
            {
	font-size: 11px;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #666;
	float: left;
	width: auto;
	margin-right: 15px;
	margin-left: 0px;
	border: 1px solid #CCC;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}
.didascaliadx
    {
	font-size: 11px;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #666;
	float: right;
	width: auto;
	margin-right:0px;
	margin-left: 15px;
	border: 1px solid #CCC;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
}
.signature {
	color: #666;
	text-align: right;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #666;
	padding-top: 10px;
	margin-top: 10px;
}
.contact
{
	padding-top: 110px;
	padding-bottom: 110px;
}
.info
{
	max-width: 260px;
}
.info_title
{
	font-family: 'gill', sans-serif;
	font-size: 30px;
	color: #212121;
	margin-top: 50px;
}
.info ul
{
	margin-top: 19px;
}
.info ul li
{
	margin-bottom: 19px;
	font-size: 14px;
	color: #838383;
}
.contact_form_container
{
	margin-top: 30px;
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 40px;
}
.contact_form
{
	width: 100%;
}
.input_item
{
	width: 90%;
	height: 47px;
	border: solid 2px #b5b5b5;
	margin-bottom: 24px;
	padding-left: 27px;
	outline: none;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.dropdown_item
{
	-webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
	-webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	font-size: 12px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #a0a0a0 !important;
	background-image: url(../images/dropdown.png);
	background-position: center right;
	background-repeat: no-repeat;
}
.input_item:focus
{
	border-color: #003679;
}
.dropdown_item option
{
	font-style: normal;
	font-size: 14px;
	color: #212121;
}
.contact_message
{
	height: 122px;
	padding-top: 12px;
}
.input_item::-webkit-input-placeholder
{
	font-size: 12px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #a0a0a0 !important;
}
.input_item:-moz-placeholder
{
	font-size: 12px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #a0a0a0 !important;
}
.input_item::-moz-placeholder
{
	font-size: 12px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #a0a0a0 !important;
} 
.input_item:-ms-input-placeholder
{ 
	font-size: 12px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #a0a0a0 !important;
}
.input_item::input-placeholder
{
	font-size: 12px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #a0a0a0 !important;
}
.contact_button
{
	display: block;
	position: relative;
	width: 90%;
	height: 47px;
	background: #003679;
	line-height: 47px;
	font-size: 14px;
	text-transform: uppercase;
	color: #FFFFFF;
	font-weight: 500;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 1;
}
