@charset "utf-8";
/* CSS Document */

body{
	width: 800px;
	position: static;
	font-size: 11px;
 font-family: Dotum,'맑은고딕';
	font-weight: lighter;
	text-align: center;
}

.title{
	text-align: center;
}

.contents{
	text-align: center;
	padding: 20px;
    width: 890px;
}

.tab{
	width: 850px;
	border-collapse: collapse;
}

.tab tr:nth-child(2n){
	background-color: #eee;
}

.subject{
	text-align: left;	
}

td{
	padding: 2px 10px 2px 10px;
	color: #515151;
}

tr{
	height: 50px;
}

footer{
	text-align: center;
	margin-top: 20px;
}

#btnVote{
	padding: 4px 20px 8px 20px; 
	color: #fff;
	width:170px;
	height: 50px;
	background: #282828;
	border: 1px solid #282828;
	text-align: center;
	text-decoration: none;
	font-size: 17px;
}



#btnVote:hover{
	background: #fff;
	border: 1px solid #282828;
	color: #282828;
	cursor: pointer;
}

.popup{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 5;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 900px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border-radius: 5px;
	background: #fff;
	box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s;
}

.close{
	padding: 10px 20px 10px 0px;
	text-align: right;
}
.close>a{
	color: gray;
	text-decoration: none;
	font-size: 12px;
}

.popup:target{opacity: 1;}

.dim{
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	opacity: 0;
	transition: all 0.5s;
}

