.fullScreenModal .modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.fullScreenModal .modal-dialog {
	position: fixed;
	margin: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}

.fullScreenModal .modal-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 3px solid #ddd;
	border-radius: 0;
	box-shadow: none;
}

.fullScreenModal .modal-header {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 45px;
	padding: 5px;
	background: #f8f5f5;
	border: 0;
}

.fullScreenModal .modal-title {
	font-weight: 300;
	font-size: 2em;
	color: #333;
	line-height: 30px;
}

.fullScreenModal .modal-body {
	position: absolute;
	top: 40px;
	bottom: 60px;
	width: 100%;
	font-weight: 300;
	overflow: auto;
}

.fullScreenModal .modal-footer {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 45px;
	padding: 4px;
	background: #f1f3f5;
}

ul.modal-tabs {
	margin: 0px;
	padding: 0px;
	margin-top: 2px;
	margin-bottom: 6px;
}

ul.modal-tabs li {
	list-style: none;
	display: inline;
}

ul.modal-tabs li a {
	color: #737373;
	background-color: e6e6e6;
	padding: 10px 12px;
	margin-right: 3px;
	text-decoration: none;
	font-size: 13px;
	border-bottom: 3px solid #2f343a;
	cursor: pointer;
}

ul.modal-tabs li a:hover {
	background-color: #babdb6;
	border-color: #2f343a;
}

ul.modal-tabs li a.active {
	background-color: #fff;
	color:#696969;	
	font-size: 15px;
	font-weight: bold;
	border-top: 3px solid #729fcf;
	border-left: 1px solid #729fcf;
	border-right: 1px solid #729fcf;
	border-bottom: 1px solid #fff;
	cursor: default;
}

