.inner-content table {
	width: 600px;
	margin: 0 auto;
}

.inner-content table .inputTxt {
	border: solid 1px #CFCFCF;
	width: 380px;
	height: 25px;
}

.inner-content table .inputTextarea {
	width: 380PX;
	height: 100px;
	border: solid 1px #CFCFCF;
}

.inner-content table b {
	color: #7f0909;
}

.inner-content table .submitBtn,
.inner-content table .resetBtn {
	width: 100px;
	height: 36px;
	color: #FFFFFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
	outline: none;
}

.inner-content table .submitBtn {
	background: #010101;
	margin-right: 20px;
	border: none;
}

.inner-content table .submitBtn:hover {
	background: #343434;
}

.inner-content table .submitBtn:focus {
	outline: none;
}

.inner-content table .resetBtn {
	background: #AFAFAF;
	border: none;
}

.inner-content table .resetBtn:hover {
	background: #898989;
}

.inner-content table .resetBtn:focus {
	outline: none;
}

button.commonBtn {
	color: #fff;
	border: none;
	position: relative;
	height: 40px;
	font-size: 15px;
	padding: 0 40px;
	cursor: pointer;
	transition: 800ms ease all;
	outline: none;
}

button.submitBtn1 {
	background: #121212;
}

button.resetBtn1 {
	background: #898989;
	margin-left: 15px;
}

button.submitBtn1:hover {
	background: #fff;
	color: #121212;
}

button.resetBtn1:hover {
	background: #fff;
	color: #898989;
}

button.submitBtn1:before,
button.submitBtn1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 2px;
	width: 0;
	background: #121212;
	transition: 400ms ease all;
}

button.resetBtn1:before,
button.resetBtn1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 2px;
	width: 0;
	background: #898989;
	transition: 400ms ease all;
}

button.commonBtn:after {
	right: inherit;
	top: inherit;
	left: 0;
	bottom: 0;
}

button.commonBtn:hover:before,
button.commonBtn:hover:after {
	width: 100%;
	transition: 800ms ease all;
}


/******************/

#toastTip {
	display: none;
	max-width: 50%;
	padding: 20px 40px;
	position: fixed;
	top: 40%;
	left: 45%;
	z-index: 5000;
	opacity: 0.9;
	background-position: initial initial;
	background-repeat: initial initial;
	color: #FFFFFF;
	border-radius: 3px;
	font-size: 13px;
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
	text-align: center;
}

.toastTip-bgcolor-success {
	background: #a9262c;
}

.toastTip-bgcolor-error {
	background: #000000;
}


/**loading**/

#progress {
	display: none;
	position: fixed;
	height: 2px;
	background: #990000;
	transition: opacity 500ms linear;
	z-index: 999999999;
}

#progress.show {
	display: block;
	opacity: 1;
	width: 0;
}

#progress.done {
	opacity: 0
}

#progress span {
	position: absolute;
	height: 2px;
	-webkit-box-shadow: #990000 1px 0 6px 1px;
	-webkit-border-radius: 100%;
	opacity: 1;
	width: 150px;
	right: -10px;
	-webkit-animation: pulse 2s ease-out 0s infinite;
}

@-webkit-keyframes pulse {
	30% {
		opacity: .6
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: .6
	}
}


/**loading**/

#bg {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 150%;
	background-color: #A0A0A0;
	z-index: 1001;
	-moz-opacity: 0.1;
	opacity: 0.1;
	filter: alpha(opacity=10);
}