* {
	margin: 0;
	padding: 0;
	text-decoration: none;
}


body {
		-webkit-text-size-adjust: none;
	-webkit-user-select: none;
	font: 13px Helvetica, Arial, sans-serif;
  }

#container {
  margin: 0 auto;
  width: 535px;
	padding-top: 100px;
} 

h1 {
	width: 225px;
	height: 80px;
	margin-bottom: 40px;
	cursor: pointer;
	position: relative;
}

h1 a {
	display: none;
	color: #b7c2cf;
	position: absolute;
	right: -25px;
	top: 14px;
	font-size: 13px;
	border-left: 1px solid #dae2e9;
	height: 30px;
	padding: 16px 0 0 8px;
	opacity: 0.5;
}

h1:hover a {
	display: block;
}

h1:active a {
	opacity: 1;
}

h1 span {
	color: rgba(0,0,0,0);
	display: block;
	height: 100%;
	background-position: left top;
	background-repeat: no-repeat;
}



/* 	SEARCH BOX
	----------------------------------------------------- */

#box {


	position: relative;
	float: left;
	padding-bottom: 30px;
}

#input {
}

#input input {
	outline: 0;
	border: 1px solid #c6c6c6;
	background: white left top;
	-webkit-appearance: textfield;
	color: #898989;
	width: 515px;
	height: 23px;
	font: 20px Helvetica, Arial, sans-serif;
	padding: 15px 9px;
}

#input input:focus {
	/*border-color: #787878;*/
	-webkit-box-shadow: 0 0 20px white;
	-moz-box-shadow: 0 0 20px white;
}

#lang {
	position: absolute;
	right: 10px;
	top: 17px;
	font-size: 13px;
	font-weight: bold;
	padding: 3px 5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	color: #898989;
	cursor: pointer;
}

#lang:hover {
	background: #898989;
	color: white;
}

#lang:active {
	background: #898989;
}

#method {
	text-align: left;
	padding-top: 20px;
	float: left;
}

#method a {
	padding: 5px 10px 6px;
	margin: 0 10px 0 0;
	cursor: pointer;
	color: #c6c6c6;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

#method a.active,
#method a:hover {
	background-color: #c6c6c6;
	color: #fff;
}





/* 	INFO BOX
	----------------------------------------------------- */

#info {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

#toggleInfo {
	position: absolute;
	right: 0;
	bottom: 0;
	background: url(info.png);
	width: 16px;
	height: 16px;
	color: rgba(0,0,0,0);
	opacity: 0.2;
	cursor: pointer;
}

#toggleInfo:hover {
	opacity: 0.5;
}

#toggleInfo:active {
	opacity: 0.7;
}

#infoBox {
	display: none;
	position: absolute;
	right: 13px;
	bottom: 13px;
	background: #e2e2e2 left top;
	-webkit-border-radius: 8px;
	padding: 10px 20px;
	width: 300px;
	font-size: 11px;
	line-height: 16px;
	color: #898989;
	-webkit-box-shadow: 0 0 20px white;
}

#infoBox h2 {
	color: #898989;
}

#infoBox p {
	margin: 5px 0;
	clear: left;
	float: left;
}

#infoBox .source {
	color: #898989;
}


#infoBox .source a {
	color: #898989;

	text-decoration: underline;
}

#infoBox hr {
	border-bottom: 1px solid white;

	clear: left;
	margin-top: 10px;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}




/* 	SEARCH SUGGESTIONS
	----------------------------------------------------- */

#sugs {
	display: none;
	position: absolute;
	background: rgba(255,255,255,0.8);
	border: 1px solid #dae2e9;
	border-top: 0;
	left: 41px;
	top: 68px;
	right: 41px;
	list-style: none;
	padding: 3px 0;
	font-size: 11px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
}





