/*登录 注册 选择考试类别通用样式*/
.content-fluid{
	padding-left: 0;
	padding-right: 0;
	height: 730px;
}

.glyphicon-log-out{
	position: relative;
	top: 2px;
	margin-left: 520px;
}

.caret{
	border-top: none;
	border-bottom:4px dashed #0088CC;
}

.stepImg{
	/*min-width: 900px;*/
	height: 80px;
	background: #B92C28;
}
.fixed-warn{
	margin-bottom: 0;
	color: #FF4400;
}
.hide{
	display: none;
	font-size: 12px;
}
.redline{
	border:1px solid #ff4400;
}
.redline:focus{
	outline: none;
	border:1px solid #ff4400;
	box-shadow: 0 0 5px rgba(207,220,0,0.4);
	border-radius:5px;
}

.head-nav li a{
	color: rgb(155, 155, 155);
	text-decoration:none;
}

/*通用CSS*/
body{
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}
input{
	border: 1px solid #99C0EF;
	border-radius: 5px;
	background: transparent;
}
select{
	border:1px solid #99C0EF;
	border-radius: 5px;
	width: 200px;
	/*height: 25px;*/
	background: transparent;
	/*color: black;*/
}

/** 内容标题 */
.content-title{
	font-size: 20px;
	color: #4A4A4A;
	font-weight: bold;
	text-align: center;
}

/* Tooltip style */
.input-container {
	position: relative;
	display: inline-block;
}

.regular-warn.tooltip {
	position: absolute;
	top: 0;
	left: 105%; /* Position to the right of input */
	background-color: #fff0f0;
	color: #ff4400;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 12px;
	z-index: 100;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	border: 1px solid #ffcccc;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.regular-warn.tooltip::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent #ffcccc transparent transparent;
}

.regular-warn.tooltip.show {
	opacity: 1;
	visibility: visible;
}