/* button 
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
   *display: inline;
	vertical-align: baseline;
	margin:3px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family:'Nanum Gothic', 'Nanum Mmyeongjo', 'µ¸¿ò', AppleGothic, sans-serif;
	padding: .5em 2em .55em;
    text-shadow:;
	-webkit-border-radius: .2em;
	-moz-border-radius: .2em;
	border-radius: .2em;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}
.button:hover {
	text-decoration: none;
}
.button:active {
position: relative;
	top: 0;
}
.round {
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
.big {
	font-size: 15pt;
	padding: 15px 20px;
	
}
.medium {
	font-size:11pt;
	padding:8px 18px;
}

.small {
	font-size: 9pt;
	padding:7px 10px;
}

.small_s{
	font-size: 8pt;
	padding: 3px 5px;
}
/* color styles 
---------------------------------------------- */

/* black */
.black {
	color: #fff;
		border: solid 1px #52545a;
	background: #52545a;
}



/* gray */
.gray {
	color: #fff;
	border: solid 1px #555;
	background: #696969;
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
	background: -moz-linear-gradient(top, #888, #575757);
   filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
/* lightgray */
.lightgray {
	color: #fff;
	border: solid 1px #b6b6b6;
	background: #b6b6b6;
	
}
/* white */
.white {
	color: #333;
	border: solid 1px #c8c8c8;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top, #fff, #ededed);
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
/* red */
.red {
	color: #fff;
	border: solid 1px #e13414;
	background: #e13414;
}
/* orange */
.orange {
	color: #fff;
	border: solid 1px #ff6550;
	background-color:#ff6550;
}
/* blue */

.blue {
	border: solid 1px #033679;
	background-color:#033679;
	color:#FFF;
	
	
}


.lightblue {
	border: solid 1px #8599b1;
	background-color:#8599b1;
	color:#FFF;
	
}

/* static */

.bt_round{background-color:#4386f1;
	color:#FFF;
	font-size:8pt;
	font-weight:bold;
	-webkit-border-radius:100px;
	-moz-border-radius:100px;
	border-radius:100px;
	width:25px;
	height:25px;
	line-height:25px;
	display: inline-block;
	float:;
	margin-right:10px;
	text-align:center;
	vertical-align:middle;}
	
.bt_round_b{background-color:#000;
	color:#FFF;
	font-size:10pt;
	font-weight:bold;
	-webkit-border-radius:100px;
	-moz-border-radius:100px;
	border-radius:100px;
	width:30px;
	height:30px;
	line-height:30px;
	display:block;
	margin-right:10px;
	text-align:center;
	}