/* Include Roboto font from Google Web Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic');

body {
	margin:0px 0px 0px 0px;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.c_blue {
	background-color:#D9E5FF;
}

.c_blue:hover {
	background-color:#B2CCFF;
}

.c_red {
	background-color:#FAE0D4;
}

.c_red:hover {
	background-color:#FFC19E;
}

.c_green {
	background-color:#CEFBC9;
}

.c_green:hover{
	background-color:#B7F0B1;
}

.c_logout {
	background-color:#F15F5F;
	color:#FFFFFF;
}

.c_logout:hover {
	background-color:#CC3D3D;
}

.c_gray {
	background-color:#F6F6F6;
}

.c_gray:hover{
	background-color:#FFFFFF;
}


input {
	height: 32px;
	font-size: 15px;
	border: 0;
	border-radius: 5px;
	outline: none;
	padding-left: 10px;
}

select {
	height: 32px;
	font-size: 15px;
	border: 0;
	border-radius: 5px;
	outline: none;
	padding-left: 10px;
}

button {
	height: 32px;
	font-size: 15px;
	border: 0;
	border-radius: 5px;
	cursor:pointer;
}

.w_500 {
	width:500px;
}

.w_300 {
	width:300px;
}

.w_200 {
	width:200px;
}

.w_150 {
	width:150px;
}

.w_120 {
	width:120px;
}

.w_100 {
	width:100px;
}

.w_70 {
	width:70px;
}

.w_40 {
	width:40px;
}

.text01 {
	color: #666666;	font-size:10pt;
}

.copyright {	
	color: #b1b1b1;	
	font-size:7pt;
}

.c_gray {
	background-color:#e5e5e5;
	border: 1px solid #dfdfdf;
}

.c_gray:hover {
	background-color:#ffffff;
	border: 1px solid #000000;
}

.c_white {
	background-color:#ffffff;
	border: 1px solid #dfdfdf;
}

.c_white:hover {
	background-color:#ffffff;
	border: 1px solid #000000;
}

.c_red2 {
	background-color:#df0a00;
	color: #fff;
	font-weight:600;
}

.c_red2:hover{
	background-color:#f3362d;
	color: #fff;
	font-weight:600;
}

a {
  text-decoration: none;
   color:#000000;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.blinking-button {
  animation: blink 1s infinite; /* 1ÃÊ °£°ÝÀ¸·Î ¹Ýº¹ */
}