/*!
 * jQuery confirmOn Plugin
 * https://github.com/invetek/jquery-confirmon
 *
 * Copyright 2013 Loran Kloeze - Invetek
 * Released under the MIT license
 */
.confirmon-overlay {
	background-color: black;
	background-color: rgba(0, 0, 0, 0.60);
	width: 100%;
	height: 100%;
	margin: 0;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 1150;
	display: none;
}
.confirmon-box {
	background-color: #0099cc;
	color: #ddd;
	border: solid 1px #666666;
	box-shadow: 0px 1px 10px #222;
	padding: 20px 10px;
	text-align: center;
	font-size: 15px;
	font-size: 1.5rem;
	z-index: 1151;
	display: none;
	position: fixed;
	margin-left: -15%;
	width: 30%;
	left: 50%;
	top: 185px;
}
.confirmon-box button {
	margin: 10px 5px;
	padding: 5px 10px;
	text-align: center;
	background-color: #0099cc;
	border: 1px solid #ddd;
	color: #ddd;
	font-family:Century Gothic,Verdana,Arial,Helvetica,LiHei Pro Medium,微軟正黑體,sans-serif;
}
.confirmon-box button:hover {
	background-color: #00bbee;
	cursor: pointer;
}
.confirmon-button.confirmon-button--yes {}
.confirmon-button.confirmon-button--no {}

/* skin-red */
.skin-red-overlay {
	background-color: black;
	background-color: rgba(0, 0, 0, 0.60);
	width: 100%;
	height: 100%;
	margin: 0;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 1150;
	display: none;
}
.skin-red-box {
	background-color: #ea3e23;
	color: #ddd;
	border: solid 1px #cccccc;
	box-shadow: 0px 1px 10px #222;
	padding: 20px 10px;
	text-align: center;
	font-size: 15px;
	font-size: 1.5rem;
	z-index: 1151;
	display: none;
	position: fixed;
	margin-left: -15%;
	width: 30%;
	left: 50%;
	top: 185px;
}
.skin-red-box button {
	margin: 10px 5px;
	padding: 5px 10px;
	text-align: center;
	background-color: #ea3e23;
	border: 1px solid #dddddd;
	color: #ffffff;
	font-family:Century Gothic,Verdana,Arial,Helvetica,LiHei Pro Medium,微軟正黑體,sans-serif;
}
.skin-red-box button span {
	vertical-align: middle;
}
.skin-red-box button i {
	margin-right:5px;
}
.skin-red-box button:hover {
	background-color: #ff0000;
	cursor: pointer;
}

/* skin-blue */
.skin-blue-overlay {
	background-color: black;
	background-color: rgba(0, 0, 0, 0.60);
	width: 100%;
	height: 100%;
	margin: 0;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 1150;
	display: none;
}
.skin-blue-box {
	background-color: #0099cc;
	color: #ddd;
	border: solid 1px #666666;
	box-shadow: 0px 1px 10px #222;
	padding: 20px 10px;
	text-align: center;
	font-size: 15px;
	font-size: 1.5rem;
	z-index: 1151;
	display: none;
	position: fixed;
	margin-left: -15%;
	width: 30%;
	left: 50%;
	top: 185px;
}
.skin-blue-box button {
	margin: 10px 5px;
	padding: 5px 10px;
	text-align: center;
	background-color: #0099cc;
	border: 1px solid #ddd;
	color: #ddd;
	font-family:Century Gothic,Verdana,Arial,Helvetica,LiHei Pro Medium,微軟正黑體,sans-serif;
}
.skin-blue-box button span {
	vertical-align: middle;
}
.skin-blue-box button i {
	margin-right:5px;
}
.skin-blue-box button:hover {
	background-color: #00bbee;
	cursor: pointer;
}

/* textNoHidden */
.textNoHidden-overlay {
	background-color: black;
	background-color: rgba(0, 0, 0, 0.60);
	width: 100%;
	height: 100%;
	margin: 0;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 1150;
	display: none;
}
.textNoHidden-box {
	background-color: #0099cc;
	color: #ddd;
	border: solid 1px #666666;
	box-shadow: 0px 1px 10px #222;
	padding: 20px 10px;
	text-align: center;
	font-size: 15px;
	font-size: 1.5rem;
	z-index: 1151;
	display: none;
	position: fixed;
	margin-left: -15%;
	width: 30%;
	left: 50%;
	top: 185px;
}
.textNoHidden-box button {
	margin: 10px 5px;
	padding: 5px 10px;
	text-align: center;
	background-color: #0099cc;
	border: 1px solid #ddd;
	color: #ddd;
	font-family:Century Gothic,Verdana,Arial,Helvetica,LiHei Pro Medium,微軟正黑體,sans-serif;
}
.textNoHidden-box button:hover {
	background-color: #00bbee;
	cursor: pointer;
}
.textNoHidden-button.textNoHidden-button--yes {}
.textNoHidden-button.textNoHidden-button--no {
	display: none;
}


@media screen and (max-width : 979px) {
	.confirmon-box { width: 60%; margin-left: -30%; }
}