/*	Less Framework 4
	http://lessframework.com
	by Joni Korpi
	License: http://opensource.org/licenses/mit-license.php	*/


/*	Resets
	------	*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, 
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup, 
menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
	display: block;
}

a img {border: 0;}

img, object {
	max-width: 100%;
 }


/*---------Fonts---------*/

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

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

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

/*---------Independent of Layout---------*/
	

body {
	font-family: Helvetica, Arial, sans-serif;
	color: #fff;
	font-size: 12px;
}

.clear {
	clear: both;	
}

a {
	text-decoration: none;
	cursor: pointer;
	cursor: hand;
	color: rgb(25,145,244);
}


.img-shadow {
	-webkit-box-shadow: 3px 3px 6px rgba(50, 50, 50, 0.7);
-moz-box-shadow:    3px 3px 6px rgba(50, 50, 50, 0.7);
box-shadow:         3px 3px 6px rgba(50, 50, 50, 0.7);
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.underline {
	border-bottom: 2px solid rgb(244,15,15);
	margin-bottom: 15px;	
}

.center {
	text-align: center;	
}

.shade {
	background: -moz-linear-gradient(top,  rgba(226,226,226,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */

background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(226,226,226,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */

background: -webkit-linear-gradient(top,  rgba(226,226,226,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */

background: -o-linear-gradient(top,  rgba(226,226,226,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */

background: -ms-linear-gradient(top,  rgba(226,226,226,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */

background: linear-gradient(to bottom,  rgba(226,226,226,1) 0%,rgba(255,255,255,0) 100%); /* W3C */

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

}	

/*---------Transitions---------*/

#footer a, #fixed-header a, .main-nav-box a, .link a, .highlight-indicator a, #second-nav a {
	-webkit-transition: all .6s ease-in-out;
-moz-transition: all .6s ease-in-out;
-o-transition: all .6s ease-in-out;
-ms-transition: all .6s ease-in-out;
transition: all .6s ease-in-out;	
}

/* Selection colours (easy to forget) */

::selection 	 	{background: rgb(255,255,158);}
::-moz-selection 	{background: rgb(255,255,158);}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: rgb(255,255,158);}



/*		Default Layout: 992px. 
		Gutters: 24px.
		Outer margins: 48px.
		Leftover space for scrollbars @1024px: 32px.
-------------------------------------------------------------------------------
cols    1     2      3      4      5      6      7      8      9      10
px      68    160    252    344    436    528    620    712    804    896    */

body {
	width: 1024px;
	padding: 0px 28px 28px;
	background: #222222;
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
	margin-left: auto;
	margin-right: auto;
}

/*---------Fixed Header---------*/

#fixed-header {
	position:fixed; 
	top:0;
	margin:auto; 
	z-index:100005;
	width: 1024px;
	background-color: #222222;
}


.top-nav {
	height: 130px;
	z-index: 100008;
	-webkit-box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
-moz-box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
}

.logo {
	position: absolute;
	/*top: -65px;*/
	left: 40%;	
	background-image: url(../images/logo-background_sm.png);
	width: 208px;
	height: 247px;
	z-index: 100001;
}

.logo img{
	padding-top: 15px;
	text-align: center;
	
}

.left ul, .right ul {
	width: 50%;
	
	
}

.left li, .right li {
	margin-top: 90px;
	list-style: none;
	display: block;
	width: 20%;
	text-align: center;
	
}

.left li {
	float: left;
}

.right li {
	float: right;	
}


.left li a, .right li a {
	color: #fff;
    font-family: 'ralewaybold';
	letter-spacing: 2px;
	font-size: 18px;
	text-transform: uppercase;	
	padding: 2px 20px 2px 20px;
}

.left li a:hover, .right li a:hover {
	background-color: #444444;
	width: 100px;	
}

/*---------Main Header Title---------*/

.main-title {
	margin-top: 130px;
	background-image: url(../images/blue-header_sm.png);
	width: 1024px;
	height: 200px;
}
	
.main-title p {
	text-transform: uppercase;
	padding-top: 130px;
	text-align: center;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
	color: #fff;
	font-family: 'ralewaybold';
	letter-spacing: 1px;
	font-size: 40px;
}

#help {
  margin: 0; 
  border: 0; 
  padding: 0; 
  clear: both; 
  float: none; 
  font-size: 1px;
} 


/*---------Highlights---------*/

.highlights-box {
	width: 100%;
	overflow: hidden;
	/*height: 289px;*/
	height: 320px;
	padding: 0 !important;
	position: relative;
	background-color: #fff;
	/*margin-top: 10px;*/
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
	-webkit-box-shadow: inset 0px 3px 5px -3px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 3px 5px -3px rgba(0,0,0,0.75);
box-shadow: inset 0px 3px 5px -3px rgba(0,0,0,0.75);
	}
	
	.highlights-box div {
		margin: 0;
		padding: 0 !important;
		}

	.highlights-loading {
	width: 100%;
	height: 36px;
	background-image: url(../images/highlight/ajax-loader.gif);
	background-repeat: no-repeat;
	background-position: center;
		}
	
	.highlights-box h4 {
	color: rgb(25,145,244);
	font-size: 18px;
	width: 34%;
	font-weight: bold;
	position: absolute;
	right: 85px;
	top: 20px;
	text-transform: uppercase;
	line-height: normal;
		}
	
	.highlights-box img {
	position: absolute;
	top: 20px;
	margin: 0;
	left: 85px;
	-webkit-box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
-moz-box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
		}
	.highlight-innerbox {
	position: absolute;
	top: 55px;
	right: 85px;
	width: 34%;
	height: 249px;
	overflow: hidden;
	background-color: #FFF;
	padding: 10px;
	}
	
	.highlight-text {
	overflow: hidden;
	font-size: 13px;
	line-height: 20px;
	color: #333;
	font-family: Verdana, Geneva, sans-serif;
	width: 100%;
	position: absolute;
	height: 248px;
		}
		
	/*	.highlight-text p {
	margin: 15px;
	padding: 25px;
	line-height: inherit;
			}*/
		
	.highlights-timer {
		width: 50%;
		height: 4px;
		padding: 1px;
		background-color: #ccc;
		border: 1px solid #fff;
		opacity: 0.3;
		position: absolute;
		top: 44px;
		left: 10px;
		display: none;
		}
		
		.highlights-timer div {
			background-color: #000;
			width: 0%;
			height: 4px;
			opacity: 0.8;
			}
	
	.highlights-menu {
	margin: 0;
	padding: 0;
	position: absolute;
	right: 500px;
	bottom: 30px;
	z-index: 100;
		}
		
		ul.highlights-menu li {
			float: left;
			list-style: none outside;
			list-style-image: none;
			margin: 0 2px !important;
			padding:0 !important;
			background-image:none !important;
			}
			
		.highlights-menu a {
			display: block;
			width: 16px;
			height: 16px;
			text-indent: -99999px;
			margin: 0 1px;
			}
			
		/*.highlight-play a {
			background: url(../images/highlight/btn-pause.png) no-repeat;
			}
			
		.highlight-prev a {
			background: url(../images/highlight/btn-prev.png) no-repeat;
			}
			
		.highlight-next a {
			background: url(../images/highlight/btn-next.png) no-repeat;
			}*/
			
		.highlight-indicator a {
	height: 12px;
	width: 12px;
	/*border: 1px solid #2ea7df;*/
	background-color: #fff;
	margin: 2px 3px;
	overflow: hidden;
	 -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px;
	-webkit-box-shadow: 3px 3px 6px rgba(50, 50, 50, 0.5);
-moz-box-shadow:    3px 3px 6px rgba(50, 50, 50, 0.5);
box-shadow:         3px 3px 6px rgba(50, 50, 50, 0.5);
opacity: 0.8;
			}
			
		.highlight-indicator a:hover {
	background-color: rgb(25,145,244);
	opacity: 0.8;
			}
			
		.highlight-indicator a.active {
	background-color: rgb(244,15,15);
	opacity: 0.8;
			}
/*----------Banner-------------*/

.banner {
	background: #ebc432;
	width: 100%;
	padding: 0 0 7px 0;
	color: #444;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	/*border: solid 1px #f71e0d;*/
	margin-left: auto;
	margin-right: auto;
}

.banner a {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);	
}


/*---------Main Content---------*/

.main-nav-box {
	float: left;
	margin: 20px 25px;
	width: 20%;
	position: relative;

}

.main-nav-box img {
	z-index: 9;
}

.main-nav-box a {
	color: #fff;
}

.main-nav-box a:hover{
	opacity: 0.7;

}

.link {
	float: left;
	/*margin: 5px 5px, 5px, 5px;*/
	padding: 5px;
	text-align: center;
	font-family: 'ralewaybold';
	letter-spacing: 2px;
	font-size: 12px;
	text-transform: uppercase;
	width: 95.3%;
	background-color: #444444;
	position:absolute;
	bottom: 3px;
	left: 0;
	z-index: 10;
	opacity: 0.9;		
}

.getty-text {
	font-family: Georgia, "Times New Roman", Times, serif;
	width: 75%;
	font-size: 14px;
	color: #666;
	font-style: italic;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}

.getty-text p {
	line-height: 30px; !important
}

.getty-title {
	text-align: center;
	font-size:16px;
	font-weight: bold;
}



/*---------Second Level---------*/

#second-nav {
	width: 1024px;
	position:fixed;
	z-index: 10000; 
}

#nav {
	width: 100%;
	background-color: #fff;
	position: absolute;
	top: -204px;
	left: 0;
	padding: 15px 0 5px 0;
	-webkit-box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
-moz-box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);
box-shadow: 0px 7px 7px rgba(50, 50, 50, 0.75);		
}

.left2 ul, .right2 ul {
	width: 50%;
	}
	
.left2 li, .right2 li {
	list-style: none;
	display: block;
	width: 20%;
	text-align: center;
	
}

.left2 li {
	float: left;
	margin-left: 5px;
}

.right2 li {
	float: right;
	margin-left: 5px;	
}


.left2 li a, .right2 li a {
	color: #333;
    font-family: 'ralewaybold';
	letter-spacing: 1px;
	font-size: 12px;
	text-transform: uppercase;	
}

.left2 li a:hover, .right2 li a:hover {
	color: rgb(244,15,15);	
}

#second-content {
	width: 100%;
	background-color: #fff;
	color: #333;
	font-size: 13px;	
}

#main {
	padding: 25px 65px;	
}

#main ul { margin-left:15px;}
#main ul li {
	list-style-image: url(/images/list-bullet.gif);
	margin:10px;
	line-height: 15px;
}
#main ol {
	margin-left: 20px;
}

p {
	padding: 5px;
	line-height: 18px;
}

/*---------Typography---------*/

h1 {
	font-family: 'ralewaybold';
	font-size: 24px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgb(25,145,244);
	border-bottom: solid 3px rgb(244,15,15);
	margin-left: -10px;
	margin-bottom: 20px;
	 /*background-color: rgb(25,145,244);
  color: transparent;
  text-shadow: 0px 1px 1px rgba(255,255,255,0.5);
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;*/	
}

h2 {
	font-family: 'ralewaybold';
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgb(25,145,244);
	margin-bottom: 10px;	
}

h3 {
	font-family: 'ralewayregular';
	font-size: 16px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.bold {
font-weight: bold;
}

.resource-title {
	font-size: 16px;
	font-family: 'ralewaybold';
	margin-bottom: 10px;
	color: rgb(25,145,244);
	
}

.small { font-size: 10px;}

.source {
	color: #666;
	font-style: italic;
	font-size: 11px;
}

/*---------Layout---------*/

.fullcolumn {
	float: left;
	width: 100%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}

.column {
	float: left;
	width: 47%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}	

.smallCol {
	float: left;
	width: 30.5%;
	padding: 5px 9px 5px 5px;
	margin: 15px 11px 15px 0;
}

.box {
	float: left;
	width: 20%;
	padding: 5px;
	margin: 10px 5px;	
}

#protectwebform_image {
	margin: 10px;	
}

#protectwebform_link_reload {
	margin: 10px;	
}

.partnerimg {
	width:35%;
}

.hide {
	display: block;
}

.show {
	display: none;
}

   .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------Images-----------*/

.img-left {
	width:auto;
	float:left;
	margin:5px 25px 10px 5px;
}

.img-left2 {
	width:auto;
	float:left;
	margin:5px 15px 7px 5px;
}


.img-right {
	width:auto;
	float:right;
	margin:5px 5px 10px 25px;
}

.img-middle {
	width: auto;
	vertical-align: middle;
	margin:5px 5px 5px 5px;
}

.img-news {
	width: 166px;
}

/*---------Buttons---------*/

.more {
	float: right;
	background-color: rgb(244,15,15);
	font-family: 'ralewaybold';
	font-size: 12px;
	letter-spacing: 2px;
	margin-top: 25px;
	margin-right: 10px;
	padding: 5px 25px 5px 25px;
	color: #fff;
	-webkit-box-shadow: 3px 3px 6px rgba(50, 50, 50, 0.5);
-moz-box-shadow:    3px 3px 6px rgba(50, 50, 50, 0.5);
box-shadow:         3px 3px 6px rgba(50, 50, 50, 0.5);
}

/*---------Footer---------*/

#footer {
	width: 100%;
	text-align: center;
	font-family: 'ralewayregular';
}

#footer  a {
	color: #fff;
    letter-spacing: 1px;	
}

#footer a:hover {
	opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */	
}

#footer img {
	padding-bottom: 10px; 
	padding-top: 10px;
}


.social-box {
	width: 13%;
	float: left;
	padding: 10px;
	padding-right: 25px;
	padding-left: 25px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FEF7F3;	
	
}


.social-box-last {
	width: 24%;
	float: left;
	padding: 10px;
	padding-right: 50px;
	padding-left: 50px;
}

.credit-box {
	margin-top: 10px;
	padding: 10px;
}

#footer ul {
	width: 100%;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
}

#footer li {
	display: block;
	float: left;
	width: 33.2%;
	text-align: center;
	border-right: 1px white solid;
	
}






/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712 */   

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	
	body {
	width: 760px;
	padding-top: 48px;
	padding-right: 28px;
	padding-bottom: 60px;
	padding-left: 15px;
	}
	
	/*---------Fixed Header---------*/

#fixed-header {
	width: 760px;
	
}

.top-nav {
	height: 116px;
}


.logo {
	position: absolute;
	/*top: -65px;*/
	left: 37%;	
	background-image: url(../images/logo-background_sm_768.png);
	width: 188px;
	height: 223px;
	z-index: 100001;
}

.logo img {
	width: 60%;
}

.left li, .right li {
	margin-top: 80px;
	list-style: none;
	display: block;
	width: 20%;
	text-align: center;
	
}

.left li a, .right li a {
	font-size: 15px;	
	padding: 2px 14px 2px 14px;
}

/*---------Main Header Title---------*/

.main-title {
	margin-top: 70px;
	width: 760px;
}
	
.main-title p {
	
	padding-top: 116px;
	font-size: 30px

}

/*---------Highlights-----------*/

.highlights-box h4 {
	font-size: 16px;
	right: 45px;
	}

.highlights-box img {
	top: 30px;
	left: 20px;
	width: 425px;
	height: 225px;
	}
		
.highlight-innerbox {
	top: 65px;
	right: 45px;
	width: 34%;
	height: 225px;
	}
	
.highlight-text {
	height: 228px;
	}
		
.highlights-menu {
	right: 310px;
	bottom: 40px;
	}
	
/*---------Second Level---------*/

#second-nav {
	width: 760px;
}

#nav {
	width: 760px;		
}

.left2 ul, .right2 ul {
	width: 45%;
	}
	
.left2 li, .right2 li {
	width: 16%;
}

.left2 li {
	margin-left: 25px;
}

.right2 li {
	margin-left: 10x;
	margin-right: 25px;	
}

#main {
	padding: 25px 35px;	
}

/*----------Banner-------------*/

.banner {
	font-size: 15px;
}

.banner img {
	width: 25px;
	height: 25px;	
}

/*---------Main Content---------*/

.main-nav-box {
	margin: 20px 19px;
	width: 20%;
	position: relative;

}

/*---------Layout---------*/

.fullcolumn {
	float: left;
	width: 100%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}

.column {
	float: left;
	width: 45%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}	

.smallCol {
	float: left;
	width: 29%;
	padding: 5px 10px 5px 5px;
	margin: 15px 15px 15px 0;
}

.partnerimg {
	width:35%;
}

/*---------Typography--------*/

h3 {
	font-family: 'ralewayregular';
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

/*---------Footer--------*/

.social-box {
	width: 12%;
	padding: 10px;
}
	

}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252  */ 

@media only screen and (max-width: 767px) {
	
	
	body {
	width: 300px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 30px;
	padding-left: 10px;
	}
	
	
		/*---------Fixed Header---------*/

#fixed-header {
	position:relative; 
	width: 100%;
}


.top-nav {
	height: 110px;
}

.logo {
	top: 0;
	left: 45%;	
	background-image: none;
	width: 50px;
	height: 50px;
}

.logo img{
	padding-top: 0;	
}

.left ul, .right ul {
	width: 30%;
}

.left li, .right li {
	margin-top: 85px;
	
}

.left li {
	width: 20%;
}

.right li {
	width: 30%;
}
.left li a, .right li a {
	font-size: 9px;
	padding: 2px;
}
.left li a:hover, .right li a:hover {
	width: 50px;	
}
/*---------Main Header Title---------*/

.main-title {
	margin-top: -5px;
	background-image: url(../images/blue-header_300.png);
	width: 300px;
	height: 59px;
}

	
.main-title p {
	padding-top: 15px;
	font-size: 15px

}

/*---------Highlights-----------*/

.highlights-box {
	width: 100%;
	height: 385px;
	padding: 0 !important;
	/*margin-top: 5px;*/
	margin-right: 0;
	margin-bottom: 15px;
	margin-left: 0;
	
	}
	
	.highlights-loading {
	width: 100%;
	height: 36px;
		}
	
	.highlights-box h4 {
	font-size: 14px;
	width: 285px;
	left: 10px;
	top: 10px;
	
		}
	
	.highlights-box img {
	margin: 0;
	left: 10px;
	top: 35px;
	width: 280px;
	height: 153px;
		}
		
.highlight-innerbox {
	top: 205px;
	left: 38px;
	width: 75%;
	height: 150px;
	padding: 20px;
	opacity: .9;
	}
	
.highlight-text {
	font-size: 10px;
	line-height: 5px;
	width: 100%;
	height: 100%;
		}
		
		
.highlights-menu {
	margin: 0;
	padding: 0;
	right: 0;
	bottom: 10px;
		}
		
.highlight-indicator a {
	margin: 2px 2px;
			}
			
/*---------Second Level---------*/

#second-nav {
	position: relative;
	width: 100%; 
	margin-top: 70px;
}

#nav {
	width: 100%;
	background-color: #fff;
	position: absolute;
	top: -130px;
	left: 0;
	padding: 15px 0 5px 0;
}

.left2 ul, .right2 ul {
	width: 50%;
	}
	
.left2 li, .right2 li {
	width: 23%;
	
}

.left2 li {
	float: left;
	margin-left: 5px;
}

.right2 li {
	float: left;
	margin-left: 5px;	
}


.left2 li a, .right2 li a {
	letter-spacing: 0;
	font-size: 9px;
	line-height: 5px;	
}

#main {
	padding: 15px 20px;	
}

#second-content {
	margin-top: -70px;
}

/*----------Banner-------------*/

.banner {
	font-size: 11px;
	letter-spacing: normal;
}

.banner img {
	width: 20px;
	height: 20px;	
}


/*---------Main Content---------*/

.main-nav-box {
	margin: 10px 10px 5px 10px;
	width: 43%;
	position: relative;

}

.link {
	letter-spacing: 1px;
	font-size: 11px;
	width: 93%;
	bottom: 3px;
}

.getty-text {
	width: 90%;
	font-size: 14px;
	color: #666;
	font-style: italic;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}



/*---------Layout---------*/

.fullcolumn {
	float: left;
	width: 100%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}

.column {
	float: left;
	width: 95%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}	

.smallCol {
	float: left;
	width: 95%;
	padding: 5px 10px 5px 5px;
	margin: 15px 15px 0px 0;
}

.hide {
	display: none;
}

.show {
	display: block;
}


/*---------Typography--------*/

h1 {
	font-size: 18px;
	letter-spacing: 2px;
	margin-left: 0;
	margin-bottom: 10px;	
}

h2 {
	font-size: 15px;
	letter-spacing: 1px;
	margin-bottom: 10px;	
}

h3 {
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}


/*--------Images-----------*/

.img-left {
	width:auto;
	float:left;
	margin:5px 15px 7px 5px;
}

.img-left2 {
	width:auto;
	float:left;
	margin:5px 15px 7px 5px;
}

.img-right {
	width:auto;
	float:right;
	margin:5px 5px 10px 15px;
}

.img-middle {
	width: auto;
	vertical-align: middle;
	margin:5px 5px 5px 5px;
}

.page-img {
	width: 120px;
}

.text-img {
	width: 250px;
}

.partnerimg {
	width:30%;
}

.img-news {
	display: none;
}


/*---------Buttons------------*/

.more {
	font-size: 10px;
	letter-spacing: 2px;
	margin-top: 0;
	margin-right: 10px;
	padding: 2px 10px 2px 10px;
}


/*---------Footer---------*/

#footer {
	font-size: 10px;
}

#footer  a {
	letter-spacing: 1px;	
}

.social-box {
	padding-right: 13px;
	padding-left: 13px;
	
}

.credit-box {
	margin-top: 5px;
	padding-right: 20px;
	padding-left: 20px;
}

.resize {
	width: 25%;	
}

	
}



/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436   */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	body {
		width: 475px;
		padding: 36px 15px 48px;
	}
	
	
		/*---------Fixed Header---------*/

#fixed-header {
	position: relative;
	width: 475px;
	
}

.top-nav {
	height: 72px;
}


.logo {
	position: absolute;
	/*top: -65px;*/
	left: 37%;	
	background-image: url(../images/logo-background_sm_480.png);
	width: 118px;
	height: 139px;
	z-index: 100001;
}

.logo img {
	width: 57%;
}

.left li, .right li {
	margin-top: 40px;
	list-style: none;
	display: block;
	width: 19%;
	text-align: center;
	
}

.left li a, .right li a {
	font-size: 10px;	
	padding: 2px 2px 2px 2px;
}

/*---------Main Header Title---------*/

.main-title {
	margin-top: 0px;
	background-image: url(../images/blue-header_sm.png);
	width: 475px;
	height: 150px;
}

	
.main-title p {
	
	padding-top: 100px;
	font-size: 20px

}

/*---------Highlights-----------*/

.highlights-box {
	width: 100%;
	overflow: hidden;
	height: 299px;
	padding: 0 !important;
	position: relative;
	background-color: #fff;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
	
	}
	
	.highlights-box div {
		margin: 0;
		padding: 0 !important;
		}

	.highlights-loading {
	width: 100%;
	height: 36px;
	background-image: url(../images/highlight/ajax-loader.gif);
	background-repeat: no-repeat;
	background-position: center;
		}
	
	.highlights-box h4 {
	font-size: 14px;
	width: 95%;
	right: auto;
	left: 20px;
	top: 15px;
	
		}
	
	.highlights-box img {
	position: absolute;
	top: 20px;
	margin: 0;
	left: 20px;
	top: 40px;
	width: 435px;
	height: 235px;
		}
		
.highlight-innerbox {
	position: absolute;
	top: 50px;
	right: 30px;
	width: 40%;
	height: 218px;
	overflow: hidden;
	background-color: #FFF;
	opacity: .8;
	padding: 20px;
	}
	
.highlight-text {
	overflow: hidden;
	font-size: 10px;
	line-height: 5px;
	width: 100%;
	position: absolute;
	height: 215px;
		}
		
		
.highlights-timer div {
	background-color: #000;
	width: 0%;
	height: 4px;
	opacity: 0.8;
		}
	
.highlights-menu {
	margin: 0;
	padding: 0;
	right: 340px;
	bottom: 20px;
		}
		
ul.highlights-menu li {
	float: left;
	list-style: none outside;
	list-style-image: none;
	margin: 0 2px !important;
	padding:0 !important;
	background-image:none !important;
		}	
			
.highlight-indicator a {
	margin: 2px 2px;
	overflow: hidden;
			}
			
		
	

/*---------Second Level---------*/

#second-nav {
	position: relative;
	width: 475px; 
	margin-top: 0;
}

#nav {
	width: 475px;
	background-color: #fff;
	position: absolute;
	top: -160px;
	left: 0;
	padding: 15px 0 5px 0;
}

.left2 ul, .right2 ul {
	width: 50%;
	}
	
.left2 li, .right2 li {
	list-style: none;
	display: block;
	width: 18%;
	text-align: center;
	
}

.left2 li {
	float: left;
	margin-left: 5px;
}

.right2 li {
	float: right;
	margin-left: 5px;	
}


.left2 li a, .right2 li a {
	letter-spacing: 0px;
	font-size: 9px;
	line-height: 5px;	
}

#main {
	padding: 15px 20px;	
}

#second-content {
	margin-top: 0;
}

/*----------Banner-------------*/

.banner {
	font-size: 14px;
	letter-spacing: normal;
}

.banner img {
	width: 25px;
	height: 25px;	
}

/*---------Main Content---------*/

.main-nav-box {
	margin: 20px 20px;
	width: 40%;
	position: relative;

}

.link {
	font-size: 12px;
	width: 95%;	
}

.getty-text {
	width: 90%;
	font-size: 14px;
	color: #666;
	font-style: italic;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}



/*---------Layout---------*/

.fullcolumn {
	float: left;
	width: 100%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}

.column {
	float: left;
	width: 95%;
	padding: 5px;
	margin: 15px 15px 15px 0;
}	

.smallCol {
	float: left;
	width: 43%;
	padding: 5px 10px 5px 5px;
	margin: 15px 15px 0px 0;
}

.hide {
	display: none;
}

.show {
	display: block;
}


/*---------Typography--------*/

h1 {
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgb(25,145,244);
	border-bottom: solid 3px rgb(244,15,15);
	margin-left: 0px;
	margin-bottom: 10px;	
}

h2 {
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgb(25,145,244);
	margin-bottom: 10px;	
}

h3 {
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 10px;
}


/*--------Images-----------*/

.img-left {
	width:auto;
	float:left;
	margin:5px 15px 7px 5px;
}

.img-left2 {
	width:auto;
	float:left;
	margin:5px 15px 7px 5px;
}

.img-right {
	width:auto;
	float:right;
	margin:5px 5px 10px 15px;
}

.img-middle {
	width: auto;
	vertical-align: middle;
	margin:5px 5px 5px 5px;
}

.page-img {
	width: 120px;
}

.text-img {
	width: 170px;
}

.partnerimg {
	width:30%;
}

.img-news {
	display: inherit;
	width: 120px;
}


/*---------Buttons------------*/

.more {
	font-size: 10px;
	letter-spacing: 2px;
	margin-top: 0;
	margin-right: 10px;
	padding: 2px 10px 2px 10px;
}

/*---------Footer---------*/

#footer {
	font-size: 10px;
}

.social-box {
	width: 11%;
	padding: 10px;
}

	
} 