@charset "UTF-8";

/*Note: This CSS file may not always be valid according to the W3C standards.
It may contain proprietary/nonstandard or yet unsupported code.
This code is used to fix certain user agent rendering bugs, or to enhance the website/application in the case of more advanced user agents.*/

/*
@website: 
@author: spotonearth team
@copyright: spotonearth 2009 

1    general rules
1.1. reset
1.2. typography
1.3. forms
1.4. tables
1.5. floats
1.6. misc

2   layout
2.1. grids
2.2. container
2.3. header
2.4. content
2.5. footer
*/

/*************************************
1. General rules
**************************************/

/*---------1.1. reset-------------*/
* { 
	list-style: none;
	font-size: 100%; 
	text-decoration: none;
	font-variant: normal;
	font-family: inherit;
	outline: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,ul, ol, li, dl, dt, dd, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd,q, s, samp, small, strike, strong, sub, sup, tt, var, li,  fieldset, form, label, legend, input, select, option, optgroup{
	padding: 0px;
	margin: 0px;
}

html {
	height: 100%;
}

body {
	height: 100%;
	overflow: hidden; 
	font-family:Arial, Helvetica, sans-serif;
	font-size: 62.5%; /* 1em = 10px \ 1.1em = 11px \ 1.2em = 12px */
	background: #559bd4;
}

*:focus::-moz-focus-inner {
	border-color: transparent !important;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q { quotes: "" ""; }

pre {
	width: 100%;
	overflow: auto;
	white-space: pre;
	white-space: -moz-pre-wrap;
	white-space: -hp-pre-wrap;
	white-space: -o-pre-wrap;
	white-space: -pre-wrap;
	white-space: pre-wrap;
	word-wrap: break-word;
}

img,
object,
embed {
	display: -moz-inline-box;
	display: inline-block;
	border: none;
	vertical-align: bottom;
}

a img {
	vertical-align: middle;
}

ul.list,
ol.list {
	margin: 10px 0px;
	padding: 0px 0px 0px 2em;
}

ul.list li { list-style: disc; }

ol.list { list-style: decimal; }

dl.list { margin: 10px 0px; }

dl.list  dt { margin: 10px 0px 2px 0px; }

dl.list dd { margin: 0px 0px 0px 2em; }

/*-------1.2. typography----*/
/*headings and paragraphs*/
h1, h2, h3, h4, h5, h6 { 
	margin: 0px 0px 10px 0px;
}

h1 {
	font-size: 2.2em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.8em;
}

h4 {
	font-size: 1.6em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1.2em;
}

p {
	margin: 0px 0px 15px 0px;
}

blockquote {}

blockquote p {
	margin: 0px;
}

/*links*/
a {
	cursor: pointer;
}

a:link,
a:visited {}

a:hover, 
a:focus,
a:active {}

/*phrase elements*/
strong, b { font-weight: bold; }

em, i { font-style: oblique; }

del, s, strike { text-decoration: line-through; }

ins, u { text-decoration: underline; }

abbr,
acronym { speak: spell-out; }

abbr[title],
acronym[title],
dfn[title]{
	border-bottom: 1px dashed #000;
	cursor: help;
}

sup {
	vertical-align: text-top;
	font-size: 85%;
}

sub {
	vertical-align: text-bottom;
	font-size: 85%;
}

dfn {}

cite { 
	font-weight: bold; 
	font-style: italic;
}

kbd {
	padding:  0px 2px;
	border-style: solid;
	border-color: #eee;
	border-width: 1px 2px 2px 1px;
	background: #F7F7F7;
}

var {}

code {}

samp {}

/*------------1.3. forms-----------------*/
fieldset {
	border: none;
}

form li {
	margin-bottom: 3px;
}

legend {}

label {
	display: block;
}

input {
	vertical-align: bottom;
}

label input {
	vertical-align: middle;
}

.text {}

.text:focus,
.text:active {}

.radio {}

.checkbox {}

.image {}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	cursor: pointer;
}

button,
.button { 
	width: auto;
	overflow: visible;
	text-align: center;
	cursor: pointer;
}

button span { 
  display: block; 
  white-space: nowrap; 
}

button:hover,
button:focus,
button:active,
.button:hover,
.button:focus,
.button:active {}

select {}

select:focus,
select:active {}

optgroup {}

option {}

textarea {
	overflow: auto;
}

textarea:focus,
textarea:active {}

.small {
	width: 30%;
}

.medium {
	width: 50%;
}

.large {
	width: 100%;
}

/*----------1.4. tables---------*/
table {
	border: none;
	border-collapse: collapse; 
	border-spacing: 0;  /*when set to "0" cellspacing has no effect on tables */
}

tr {}

td {}

th {}

caption {
	text-align: center;
	font-weight: bold;
}

/*----------1.5. floats---------*/
form li:after,
form dl:after,
form dt:after, 
form dd:after,
ul:after,
ol:after,
dl:after,
.container:after,
.content:after,
.mainContent:after,
.sideContent:after,
.line:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

/*-------1.6. misc------*/
.hidden {
	width: 0px !important;
	height: 0px !important;
	overflow: hidden !important;
	position: absolute !important;
	top: -9999em !important;
	left: -9999em !important;
	font-size: 0px !important;
}

.left { text-align: left; }

img.left {
	margin: 0px 10px 10px 0px;
	float: left;
	clear: left;
}

.center { text-align: center; }

img.center {
	display: block;
	margin: 0 auto;
}

.right { text-align: right; }

img.right {
	margin: 0px 0px 10px 10px;
	float: right;
	clear: right;
}

.confirm,
.warning,
.notice,
.errors {
	margin: 0px 0px 10px 0px;
	padding: 10px 10px 10px 40px;
	border: 1px solid;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	-icab-border-radius: 10px;
	border-radius: 10px;
	color: #000;
	background-position: 6px 6px !important;
	background-repeat:no-repeat !important;
}

.confirm{
	border-color: #60C300;
	background: #DFFFBF url(../images/icons/confirm.png);
}

.warning{
	border-color: #FF7200;
	background: #FFE59F url(../images/icons/warning.png);
}

.notice {
	border-color: #5fb9f7;
	background: #caecff url(../images/icons/notice.png);
}

.errors{
  border-color: #FF0000;
	background: #FFAFAF url(../images/icons/error.png);
}

.error{
	color: #ff0000;
}

/************************************
2. Layout
*************************************/

/*--------------2.1. grids--------------*/
.line {
	zoom: 1.0;
}

.g1of2,
.g1of3,
.g1of4,
.g1of5,
.g2of3,
.g2of5,
.g3of4,
.g3of5,
.g4of5 {
	float: left;
	overflow: hidden;
	zoom: 1.0;
}

.g1of2 { width: 50%; }
.g1of3 { width: 33.3333%; }
.g1of4 { width: 25%; }
.g1of5 { width: 20%; }
.g2of3 { width: 66.6666%; }
.g2of5 { width: 40%; }
.g3of4 { width: 75%; }
.g3of5 { width: 60%; }
.g4of5 { width: 80%; }
.lastUnit {
	width: auto;
	float: none;
}
/*------------ navigation ------------*/
#mainNav {
	width: 741px;
	margin: 0 auto;
}

#mainNav li {
	width: 741px;
	height: 80px;
	margin: 18px 0px 0px 0px;
	background: url(../images/huge-button.png) no-repeat center center;
	
}

#mainNav a {
	display: table-cell;
	height: 80px;
	vertical-align: middle;
	font-family: Georgia, sans-serif, Arial;
	font-size: 2.0em;
	text-align: center;
	color: #000;
}

#mainNav .medium {
	width: 538px;
}

#mainNav .large {
	width: 100%;
}

#mainNav .permanent-link {
	width: 190px;
	height: 70px;
	padding: 5px;
	font-size: 1.8em;
	color: #fff;
	background: #ff0000;
	zoom: 1;
}

#mainNav .permanent-link:hover,
#mainNav .permanent-link:focus {
	color: #aaa;
}
/*------------2.2. container------------*/
.container {
	height: 100%;
	margin: 0 auto;
	position: relative;
	font-size: 1.0em;
	
}

/*------------2.3. header---------------*/
.header {
	background: #2B90EC url(../images/header.jpg) no-repeat center center;
}

.header a{
	display: block;
	width: 776px;
	height: 80px;
	overflow: hidden;
	margin: 0 auto;
	text-indent: -9999em;
}


/*------------2.4. content--------------*/
.content {
	height: 99%;
	padding: 1px 0px;
	background: url(../images/content-bg.gif) repeat top left;
}

.headlineWrapper {
	margin: 10px auto 0px auto;
	width: 741px;
	overflow: hidden;
	background: url("../images/headline-bg.gif") repeat-x top left;
}


.headlineWrapper a {
	width: 123px;
	margin: 0px 10px 0px 15px;
	float:left;
}

.headline {	
	width: 593px;
	padding: 18px 0px 0px 0px;
	float: right;
	font-size: 1.3em;
	text-align: center;
	font-weight: bold;
	color: #fff;
}

/*------------2.5. footer---------------*/
.footer {
	background: #559bd4;
}

#legal {
	background: url(../images/grad1.gif) top left repeat-x;
}

#legal ul{
	width: 758px;
	height: 110px;
	margin: 0 auto;
	background: url(../images/ajofm-mh-banner.jpg) center center no-repeat;
	background-color: #FFF;
	
}


#legal li {
	width: 0px;
	height: 0px;
	overflow: hidden;
	text-indent: -9999em;
}

.ue {
	background: url(../images/ue-logo.gif) no-repeat center top;
}

.ro {
	background: url(../images/ro-logo.gif) no-repeat center top;
}

.fse {
	background: url(../images/fse-logo.gif) no-repeat center top;
}

.is {
	background: url(../images/is-logo.gif) no-repeat center top;
}