html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;	font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}

body {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	background-color: #FFF;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #333;
}
#container {
	/*background-color: #CECECE;*/
	margin: 0px auto;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	overflow: hidden;
	/*padding: 20px;*/
	max-width: 1000px;
}
#container-inner-left {
	width: 42%;
	float: left;
}
#container-inner-left .input-field:last-child {
	margin-bottom: 0;
}
#container-inner-right {
	overflow: hidden;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: calc(58% - 20px);
	float: right;
}
.title {
	display: inline-block;
	width: 100%;
	height: 20px;
}
.input-field {
border: 1px solid #cfcfcf;
    border-radius: 3px;
    outline: none;
    padding: 5px;
    float: left;
    width: calc(100% - 12px);
    margin-bottom: 10px;
    /* border: 0; */
}
.result-cont {
	width: calc(100% - 24px);
	background-color: #dedede;
	height: 25px;
	line-height: 25px;
	padding: 12px;
	font-size: 14px;
}
.result-cont:nth-child(odd) {
	background-color: #eaeaea;
}
.result-title {
	color: #505050;
	float: left;
}
.result {
	font-weight: bold;
	float: right;
}
#logo-cont {
	text-align: center;
	padding-bottom: 60px;
	padding-top: 20px;
	width: 100%;
}
#logo {
	display: inline-block;
	max-width: 100%;
}


@media only screen and (max-width : 768px) {
	#container-inner-right { width: 100%; margin-top: 30px; }
	#container-inner-left { width: 100% }
}