@charset "utf-8";

html{
	
}
body{
	font-size:13px;
	-webkit-text-size-adjust: none;
	color:#333333;
}


/* LINK
----------------------------------------------------- */
a:link    {text-decoration:none; color:#7e5413;}
a:visited {text-decoration:none; color:#7e5413;}
a:hover   {text-decoration:underline; color:#7e5413;}
a:active  {text-decoration:none; color:#7e5413;}


@media screen and (min-width:1025px) {
a img {
	-webkit-transition: 0.3s ease-in-out;
	   -moz-transition: 0.3s ease-in-out;
	     -o-transition: 0.3s ease-in-out;
	        transition: 0.3s ease-in-out;
}
a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
}
}


/* Table 
----------------------------------------------------- */
table{}


/* tag
------------------------------------------------------- */
strong{
	font-weight:bold;
}



.text, textarea, .dropdown, input, select{
	border:1px solid #e4e4cc;
	padding: 5px;
	color: #333;
	background: #fff !important;
	border-radius: 3px;
	
	/* Webkit */
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#eee),
		to(#fff)
		);
	
	-webkit-border-radius: 5px;
	-webkit-box-shadow: 1px 1px 1px #fff;
	
	/* Firefox */
	background: -moz-linear-gradient(
		top,
		#eee,
		#fff
		);
	
	-moz-border-radius: 5px;
	-moz-box-shadow: 1px 1px 1px #fff;
	
	/* IE */
	filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#ffeeeeee,endColorstr=#ffffffff);
	zoom: 1;
}
	