* {
	margin: 0;
	padding: 0;
	text-decoration: none;
}

body {
	-webkit-text-size-adjust: none;
	-webkit-user-select: none;
	font: 13px Helvetica, Arial, sans-serif;
	color: #606060;
	background: #ffffff url('../images/bg3.png') repeat-x;
}

a {
color: #5b98e9;
text-decoration:none;
}

a:hover {
color: #a2d0f2;
text-decoration:underline;
}

a.logo:hover{
	display: block;
	opacity: 0.5;
}

#container {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 500px;
	height: 350px;
	margin: -250px 0 0 -250px;
}

h1 {
	margin-left: 15px;
	width: 416px;
	height: 167px;
	margin-bottom: 10px;
	cursor: pointer;
	position: relative;
}

h1 a {
	/*display: none;*/
	color: #5b98e9;
	position: absolute;
	right: -25px;
	top: 14px;
	font-size: 13px;
	
	height: 30px;
	padding: 16px 0 0 8px;
}

h1:hover a {
	display: block;
	opacity: 0.5;
}

h1:active a {
	opacity: 1;
}

h1 span {
	color: rgba(0,0,0,0);
	display: block;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}


h2 {
	margin-left: 100px;
	width: 300px;
	height: 100px;
	margin-bottom: 40px;
	cursor: pointer;
	position: relative;
}

h2 a {
	display: none;
	color: #5b98e9;
	position: absolute;
	right: -25px;
	top: 14px;
	font-size: 13px;
	border-left: 1px solid #dae2e9;
	height: 30px;
	padding: 16px 0 0 8px;
	opacity: 0.5;
}

h2:hover a {
	display: block;
}

h2:active a {
	opacity: 1;
}

h2 span {
	color: rgba(0,0,0,0);
	display: block;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}




/* 	SEARCH BOX
	----------------------------------------------------- */

#box {
	
	padding: 30px 40px 10px 40px;
	position: relative;
}

#input {
	background: rgba(255,255,255,0.5);
	padding: 1px; margin-top: 0; margin-bottom: 0; 
}

#input input {
	outline: 0;
	border: 0px solid #dae2e9;
	background: white url('field.png') left top repeat-x;
	font: 19px 'HelveticaNeue-Light', "Helvetica Neue Light", "Helvetica Neue", "Helvetica", Arial, sans-serif;
	font-weight: 300;
	color: #363d42;
	width: 343px;
	padding: 6px 38px 6px 35px;
}

#input input:focus {
	border-color: #cdd6de;
}

#checkbox { font-size: 13px; font-weight: bold; color: #5b98e9; padding: 1px; margin-top: 0; margin-bottom: 0; }

#checkbox checkbox { outline: 0; border: 0px solid #dae2e9; background: #fff;
	font: 19px 'HelveticaNeue-Light', "Helvetica Neue Light", "Helvetica Neue", "Helvetica", Arial, sans-serif;
	font-weight: 300; width: 10px; padding: 1px; }

#checkbox checkbox:focus { border-color: #cdd6de; }

.method {
	text-align: center;
	margin-top: 10px;
}

.method a {
	padding: 0px 1px;
/*	margin: 0 2px; */
	cursor: pointer;
	color: #eee;
	
}

.method a.active,
.method a:hover {
	
	color: #5b98e9;
}

.method a:active {
	background: #939fad;
}



/* 	INFO BOX
	----------------------------------------------------- */

#info {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

#toggleInfo {
	position: absolute;
	right: 0;
	bottom: 0;
	
	width: 16px;
	height: 16px;
	color: #eee;
	opacity: 0.2;
	cursor: pointer;
}

#toggleInfo:hover {
	opacity: 0.5;
}

#toggleInfo:active {
	opacity: 0.7;
}

#infoBox {
	display: none;
	position: absolute;
	right: 13px;
	bottom: 13px;

	padding: 10px 10px;
	width: 300px;
	font-size: 11px;
	line-height: 16px;
	color: #eee;
	
}

#infoBox h2 {
	font: 19px 'HelveticaNeue-Light', "Helvetica Neue Light", "Helvetica Neue", "Helvetica", Arial, sans-serif;
	font-weight: 300;
	margin: 3px 0 10px 0;
	color: #939fad;
}

#infoBox strong {
	font-family: "Helvetica Neue", "HelveticaNeue", "Helvetica";
}

#infoBox p {
	margin: 5px 0;
}

#infoBox .source {
	color: #939fad;
}

#infoBox .source a {
	color: #74889e;
	border-bottom: 1px solid #d6e0ea;
}

#infoBox .source a:hover {
	color: #363d42;
	border-bottom: 1px solid #939fad;
}

#infoBox hr {
	margin: 10px -20px;
	border: 0;
	border-top: solid 1px #d6e0ea;
	border-bottom: 1px solid white;
}

#infoBox #corner {
	position: absolute;
	background: url(info_corner.png);
	height: 24px;
	width: 24px;
	right: -13px;
	bottom: -13px;
}



#footer {
text-align: center;
margin-top: 40px;
clear:both;
font-size:12px;
padding-top:10px;
padding-bottom:5px;
}

/* SEARCHING CSS */

  /*this is what we want the div to look like
    when it is not showing*/
  div.loading-invisible{
    /*make invisible*/
    display:none;
  }

  /*this is what we want the div to look like
    when it IS showing*/
  div.loading-visible{
    /*make visible*/
    display:block;
	z-index:100000;
    /*position it at the very top-left corner*/
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-align:center;

    /*in supporting browsers, make it
      a little transparent*/
    background:#ffffff;
    _background:none; /*this line removes the background in IE*/
    opacity:.75;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
	color: #333333;

    /*set the padding, so that the content
      of the div is centered vertically*/
    padding-top:25%;
  }


