* {
	margin:0;
	padding:0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

/*
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
*/
}

html {
	height:100%;
}

body {
	margin:0;
	padding:0;
	min-width:340px;
	height:100%;
	font-family:"Calibri", Helvetica;
	font-size:10pt;
	color:#222;
	background: url(/img/main-bg.png);
}

@font-face {
	font-family: 'Open Sans Light';
	src: url(fonts/OpenSans-Light.eot);
	src: url(fonts/OpenSans-Light.eot?#iefix) format('embedded-opentype'),
		 url(fonts/OpenSans-Light.woff) format('woff'),
		 url(fonts/OpenSans-Light.ttf) format('truetype');
	font-weight: normal;
	font-style: normal;
}

h2 {
	margin:0 0 20px 0;
	color:#333333;
}

h3 {
	margin:0 0 10px 0;
}

div {
	position:relative;
}

label {
	display: block;
	margin: 5px 0;
}

.overflow {
	overflow:hidden;
	overflow-y:auto;
}

/* ТАБЛИЦЫ СО СПИСКАМИ */
table.list {
	margin:0;
/*	padding:5px;*/
	width:100%;
}
table.list:not(.clear) tr:nth-child(2n) {
	background:#f5f5f5;
}
table.list th {
	padding:5px;
	font-weight:bold;
	text-transform:uppercase;
	background:#ddd;
}
table.list th, table.list td {
	border-bottom:1px solid #ccc;
}
table.list th.sort {
	cursor:pointer;
}
table.list th.active, table.list th.sort:hover {
	background:#bbb;
}
table.list tr.register td, table.list tr:hover td {
	background:rgba(0, 109, 204, 0.2);
	cursor:pointer;
}
/*
table.list tr:last-child th, table.list tr:last-child td {
	border:none;
}
*/
table.list td {
	padding:5px 2px;
}
table.list tr.gray td {
	background:rgba(255, 0, 0, 0.1);
}
table.list tr.gray:hover td {
	background:rgba(255, 0, 0, 0.2);
	cursor:pointer;
}
table.fixed {
	width:auto;
}

a img {
	border:0;
}

img.icon {
	border:1px solid #fff;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}


input, select, textarea {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: .75em 1em;
	line-height: normal;
	width:100%;

	font-family:inherit;
	font-size: 10pt;
	font-weight: normal;
	color: #454545;
	vertical-align:middle;
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	border-radius: 3px;
}

textarea {
	height:5em;
}



.datepicker {
	background:url(/img/calendar.png) no-repeat;
	background-position: 99% center;
	cursor:pointer;
}

label [type="radio"] {
	margin:0 5px 2px 0;
}

p {
	margin:0 0 10px 0;
}

hr {
	margin:15px auto;
	border-top:1px solid #ddd;
	background:transparent;
}


#uploadForm {
	display:none;
}

.a-left {
	text-align:left;
}
.a-center {
	text-align:center;
}
.a-right {
	text-align:right;
}
.f-left {
	float:left;
}
.f-right {
	float:right;
}

.pointer {
	cursor:pointer;
}

.v-top {
	vertical-align:top;
}
.v-middle {
	vertical-align:middle;
}
.v-bottom {
	vertical-align:bottom;
}

.upper {
	text-transform:uppercase;
}

.light {
	background:#f5f5f5;
}

.red, .red a {
/*	background:rgba(255, 0, 0, 0.1);*/
	color:rgba(255, 0, 0, 1);
}


.row {
	display:block;
	margin:0 0 5px 0;
}
.col {
	display:inline-block;
	margin:0 10px 0 0;
	vertical-align:bottom;
}
.row.col:last-child {
	margin:0;
}

.flex {
	display:flex;
}
.flex > .col {
	width:10px;
	flex-grow:1;
}

/* Ширина полей */
.w4 {
	flex-grow:4 !important;
}
.w8 {
	flex-grow:8 !important;
}

.hide {
	display:none !important;
}

/*
.small {
	max-width:2em;
}
.small4 {
	width:4em;
}
.medium {
	width:8em !important;
}
.normal {
	width:30em;
	text-align:left;
}
.iblock {
	display:inline-block;
}

.w100 {
	width:100% !important;
}
*/

/* РАЗНЫЕ МЕЛКИЕ КНОПКИ */
.ui-small .ui-selectmenu-button.ui-button {
	width:5em;
}

.icon-check {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;   
	position: relative;
}
.icon-check:before{
	content: '';    
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: green;

	-webkit-clip-path: polygon(45% 64%, 84% 14%, 100% 28%, 47% 100%, 0 49%, 15% 32%);
	clip-path: polygon(45% 64%, 84% 14%, 100% 28%, 47% 100%, 0 49%, 15% 32%);
	
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: transform .3s;
	transition: transform .3s;
}
.icon-check:before{    
	-webkit-transform: scale(1);
	transform: scale(1);
}
.icon-check.lilac:before{
	background:#F200ff;
}

.blue {
	color: #fff !important;
	background-color: #006dcc;
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));
	background-image: -webkit-linear-gradient(top,#08c,#04c);
	background-image: -o-linear-gradient(top,#08c,#04c);
	background-image: linear-gradient(to bottom,#08c,#04c);
	border-color: rgba(0,0,0,0.1);
	border: 1px solid #006dcc;
}
.blue:hover {
	color:#fff;
	background: #04c;
	border-color: rgba(0,0,0,0.1);
	border: 1px solid #006dcc;
}
.warn {
	color: #fff !important;
	background-color: #CC0044;
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#CC6600),to(#CC0000));
	background-image: -webkit-linear-gradient(top,#CC6600,#CC0000);
	background-image: -o-linear-gradient(top,#CC6600,#CC0000);
	background-image: linear-gradient(to bottom,#CC6600,#CC0000);
	border-color: rgba(0,0,0,0.1);
	border: 1px solid #CC0044;
}
.warn:hover {
	color:#fff;
	background: #CC0000;
	border-color: rgba(0,0,0,0.1);
	border: 1px solid #CC0044;
}

.page {
	width:100%;
	height:100%;
}

.content {
	display:block;
	margin:0 auto;
	padding:50px 0 0 0;
	width:100%;
	height:100%;
}

.content > .inner {
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	overflow:hidden;
}
.wrapper {
	display:block;
	margin:0 10px;
	padding:10px;
	height:98%;
	background:#fff;
}

.table {
	display:table;
	width:100%;
}
.table-row {
	display:table-row;
}
.table-cell {
	display:table-cell;
	padding:2px;
	width:100%;
}


/* ПАГИНАЦИЯ */
.pagination {
	display:block;
	margin:15px 0 5px 0;
	width:100%;
	text-align:center;
}
.pagination-item {
	display:inline-block;
	margin:0 5px 5px 0;
	padding:5px 0;
	width:24px;
	line-height:1;
	text-align:center;
	color:#fff;
	background:#ddd;
	cursor:pointer;
}
.pagination-item:last-child {
	margin:0;
}
.pagination-item.active, .pagination-item:hover {
	background:#006dcc;
}



/* ОСНОВНОЙ БЛОК */
.block-index {
	width:100%;
	height:100%;
}
.block-index .filter {
	display:inline-block;
	margin:0 10px 0 0;
	padding:10px 5px;
	width:250px;
	height:100%;
	background:#fff;
	vertical-align:top;
}
.block-index .data {
	display:inline-block;
	width:calc(100% - 270px);
	height:100%;
	background:#fff;
	vertical-align:top;
}

.error {
	background:rgba(255, 0, 0, 0.2) !important;
	color:#ff0000 !important;
	border-color: #ff0000 !important;
}
.error.green {
	color:#5abc57;
}


/* Радиокнопки в виде кнопок */
.flatten {
	margin:0 5px 5px 0;
	padding:3px 7px;
}
.flatten::last-child {
	margin-right:0;
}


/* Кастомизируем выпадающие списки */
.select2-container {
	z-index:99999;
}
.select2-container .select2-selection--single{
	padding-top:0.22em;
	padding-bottom:0.22em;
	height:auto;
}

.black-and-white {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: url(desaturate.svg#greyscale);
	filter: gray;
	-webkit-filter: grayscale(1);
}


.mainmenu-block {
	position:absolute;
	padding:0 20px;
	top:0;
	width:100%;
	height:40px;
	font-family:"Calibri";
	font-size:18px;

	border-color: #0079a4;
	background-color: #00a0d0;
	background-image: -moz-linear-gradient(top,#00aad6,#0090c7);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#00aad6),to(#0090c7));
	background-image: -webkit-linear-gradient(top,#00aad6,#0090c7);
	background-image: -o-linear-gradient(top,#00aad6,#0090c7);
	background-image: linear-gradient(to bottom,#00aad6,#0090c7);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00aad6', endColorstr='#ff0090c7', GradientType=0);
}
.mainmenu-block .home {
	display:inline-block;
	width:25px;
	height:40px;
	line-height:40px;
	vertical-align:middle;
	text-align:center;
	opacity:0.7;
}
.mainmenu-block .home:hover {
	opacity:1;
}
.mainmenu-block .icon-home {
	display:inline-block;
	margin:12px 0 0 0;
	width:13px;
	height:14px;
	background-image:url(/img/glyphicons-halflings-white.png);
	background-position: 0px -23px;
}

.mainmenu-block ul {
	list-style:none;
}
.desktop-menu {
	display:inline-block;
}
ul.mainmenu {
	display:inline-block;
	list-style:none;
	margin:0;
	padding:0;
	vertical-align:middle;
}
ul.mainmenu > li {
	position:relative;
	float:left;
}
ul.mainmenu > li .dropdown {
	display:inline-block;
	padding:0 20px;
	height:40px;
	line-height:40px;
	color:#fff;
	cursor:pointer;
	text-decoration:none;
}
ul.mainmenu > li:hover .dropdown {
	color: white;
    background-color: #00a9d9;
    background-image: -moz-linear-gradient(top,#00b4df,#0098d1);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#00b4df),to(#0098d1));
    background-image: -webkit-linear-gradient(top,#00b4df,#0098d1);
    background-image: -o-linear-gradient(top,#00b4df,#0098d1);
    background-image: linear-gradient(to bottom,#00b4df,#0098d1);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00b4df', endColorstr='#ff0098d1', GradientType=0);
}
.caret {
	display:inline-block;
	margin:18px 0 0 5px;
	width: 0;
	height: 0;
	vertical-align: top;
	border-top: 4px solid #fff;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: "";
}

ul.mainmenu ul {
	position: absolute;
	display:none;
	list-style: none;
	margin: 0;
	padding: 5px 0;
	float: left;
	top: 100%;
	left: 0;
	min-width: 160px;
	width:300px;
	color: #000;
	z-index:100000;

	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,0.2);

	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}
ul.mainmenu ul li {
	display:block;
	color:#222;
}
ul.mainmenu ul li a {
	display:block;
	padding:5px 20px 0px 20px;
	text-decoration:none;
/*	white-space: nowrap;*/
}
ul.mainmenu ul li a .line {
	display:block;
	margin:10px auto 5px auto;
	height:1px;
	background:#ddd;
}
ul.mainmenu ul li:last-child a .line{
	display:none;
}
ul.mainmenu ul a .title {
	display:block;
	line-height:20px;
	color:#222;
}
ul.mainmenu ul a .hint {
	display:block;
	margin:5px 0;
	font-size:12px;
	color:#a2a2a2;
}
ul.mainmenu ul li a:hover {
	background:#08c;
}
ul.mainmenu ul li a:hover .line {
	background:#08c;
}
ul.mainmenu ul li a:hover .title {
	color:#fff;
}
ul.mainmenu ul li a:hover .hint {
	color:#73bee3;
}

ul.mainmenu > li:hover ul {
	display:block;
}


.bt {
	margin-top:5px;
	padding-top:10px;
	border-top:1px solid #ddd;
}
.bb {
	margin-bottom:15px;
	padding-bottom:0px;
	border-bottom:1px solid #ddd;
}


/* Список */
ul.list {
	margin:10px 0;
	padding:0;
}
ul.list li {
	margin:5px 0 0 20px;
	padding:0;
}


/* Форма поиска */
.search-form {
/*	font-size:2em;*/
	font-size:1.5em;
}
.search-form .head {
	margin:0;
	height:45px;
	line-height:45px;
	text-align:center;
}
.search-form .body {
	position:absolute;
	max-height:550px;
	background:#DCE3BF;
	z-index:1000;
	overflow:hidden;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.search-form.hidden .body {
	max-height:0;
	-webkit-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-ms-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}
.search-form .body form {
	padding:20px;
}
.search-form .flatten {
	margin:0 10px 10px 0;
	max-width:30%;
	min-width:150px;
}
.search-form .search {
	display:inline-block;
	padding:0 10px;
	float:right;
	vertical-align:middle;
	text-align:center;
	text-decoration:none;
	color:#444;

	background:#DCE3BF;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.search-form.hidden .search {
	background:#fff;
}
.search-form .search:hover {
	background:#DCE3BF;
}
.search-form.hidden .search:hover {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.search-form .search:before {
	font-family:'icomoon';
	font-size:1.5em;
	content:'\E986';
}



/* ЧТО-ТО ВЫДЕЛЕННОЕ */
.selected, .selected:hover{
	background:#afdeae !important;
	border:2px solid #5abc57 !important;
}


.actions {
	display:flex;
	flex-direction: row;
	margin-left: 0;
	margin-right: auto;
	-webkit-box-shadow: 0 3px 3px #e0e0e0;
	-moz-box-shadow: 0 3px 3px #e0e0e0;
	box-shadow: 0 3px 3px #e0e0e0;
	position: absolute;
	top: 40px;
	width: 100%;
	height: 48px;
	background: #f9f9f9;
}
.actions .btn-bar-left {
	padding: 9px 14px 0px 14px;
	height: 38px;
}
.actions .title {
	display: table;
	padding: 0px 14px;
	height: 48px;
	font-size:22px;
	background: url(/img/separator.png?) no-repeat left top;
}
.actions .title span {
	display: table-cell;
	height:48px;
	vertical-align: middle;
}
.pull-left {

}
.btn-group {
	position: relative;
	display: inline-block;
	font-size: 0;
	vertical-align: middle;
	white-space: nowrap;
}

.btn-group > .btn:first-child {
	margin-left: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 13px;
}
.btn-group > .btn {
	position: relative;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.btn:first-child {

}
.btn {
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 0;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #333;
	text-shadow: 0 1px 1px rgba(255,255,255,0.75);
	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
	background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
	background-image: -o-linear-gradient(top,#fff,#e6e6e6);
	background-image: linear-gradient(to bottom,#fff,#e6e6e6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe5e5e5', GradientType=0);
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
	
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	border: 1px solid #ccc;
	
	border-bottom-color: #b3b3b3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}

.btn [class^="exicon-"], .btn [class*=" exicon-"], .btn [class^="icon-"], .btn [class*=" icon-"] {
	opacity: 0.7;
}
[class^="exicon-"], [class*=" exicon-"] {
	display: inline-block;
	width: 14px;
	height: 20px;
	background-image: url(/img/exicons.png);
	background-position: 14px 14px;
	background-repeat: no-repeat;
	vertical-align: text-top;
	line-height: 20px;
}
.exicon-back {
	background-position: -120px 5px;
}
.btn:hover{
	color:#333;
	background-color:#e6e6e6 !important;
}


/* Более крупный шрифт */
.bigger {
	font-size:1.2em !important;
	font-weight:bold;
}

/* Форма входа */
.logon {
	position:fixed;
	display:flex;
	top:0;
	left:0;
	width:100%;
	height:100%;
	align-items: center;
	align-content: center; 
	justify-content: center; 
	overflow: none; 
}
.logon .block {
	padding:40px;
	width:90%;
	max-width:320px;
	background:#f5f5f5;
	border:1px solid #ddd;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}
.logon input[type="text"], .logon input[type="password"] {
	width:100%;
	text-align:left;
	background:#fff;
	outline:none;
}

/* AJAX PROGRESS */
.progress {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:9999999999;
/*	background:url(/img/white.png);*/
}

.progress .ajax {
	position:absolute;
	margin:-18px 0 0 -18px;
	top:50%;
	left:50%;
	width:220px;
	height:20px;
	background:url(/img/ajax-loader-rectangle.gif) no-repeat;
}


/* CHECKBOX */
.checkbox {
	vertical-align: top;
	width: 17px;
	height: 17px;
	margin: 0 3px 0 0;
}
.checkbox + label {
	cursor: pointer;
}
.checkbox:not(checked) {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 7px;
}
.checkbox:not(checked) + label {
	position: relative;
	padding: 0 0 0 35px;
}
/* Checkbox */
.checkbox:not(checked) + label:before {
	content: '';
	position: absolute;
	top: -3px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #CDD1DA;
	border-radius: 0;
	background: #FFF;
}
.checkbox:not(checked) + label:after {
	font-family:"icomoon";
	content: '\EA10';
	position: absolute;
	top: 2px;
	left: 4px;
	width: 18px;
	height: 18px;
	color:#ff0000;
	border-radius: 0;
/*	background: #000;*/
/*	box-shadow: inset 0 1px 1px rgba(0,0,0,.5);*/
	opacity: 0;
	transition: .2s;
}
/* Radiobox */
input[type=radio]:not(checked) + label:before {
	border-radius: 50%;
}
input[type=radio]:not(checked) + label:after {
	border-radius: 50%;
}
.checkbox:checked + label:after {
	opacity: 1;
}
.checkbox:focus + label:before {
/*	box-shadow: 0 0 0 3px rgba(255,255,0,.7);*/
}


/* SCROLLBAR */
.scrollbar {
	scrollbar-face-color:#ff0000 !important; 
	scrollbar-shadow-color: #ff0000 !important;
	scrollbar-highlight-color: #ff0000 !important;
	scrollbar-3dlight-color: #ff0000 !important;
	scrollbar-darkshadow-color: #ff0000 !important;
	scrollbar-track-color: #ff0000 !important;
	scrollbar-arrow-color: #ff0000 !important;
}
::-webkit-scrollbar {
	width: 2px;
	background:rgba(255, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
	width:20px;
	height:10px;
	background:rgba(255, 0, 0, 1);
}



/* MODAL */
div.back {
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	left:0;
	top:0;
	align-items: center;
	align-content: center; 
	justify-content: center; 
/*	background:rgba(255, 255, 255, 0.5);*/
	backdrop-filter: blur(5px);

	overflow:none;
	z-index:99998;
}
div.modal {
	position:fixed;
	display:block;
	width:100%;
	height:100%;
	left:0;
	top:0;
	align-items: center;
	align-content: center; 
	justify-content: center; 
/*	background:rgba(0, 0, 0, 0.7);*/
/*	backdrop-filter: blur(5px);*/

	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
	overflow-y:auto;
	z-index:99999;
}
.modal .block {
	position:relative;
	display:block;
	margin:20px auto;
	width:700px;
	background:#fff;

	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

	z-index:100000;
}
.modal .header {
	display:flex;
	padding:10px;

	border-color: #0079a4;
	background-color: #00a0d0;
	background-image: -moz-linear-gradient(top,#00aad6,#0090c7);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#00aad6),to(#0090c7));
	background-image: -webkit-linear-gradient(top,#00aad6,#0090c7);
	background-image: -o-linear-gradient(top,#00aad6,#0090c7);
	background-image: linear-gradient(to bottom,#00aad6,#0090c7);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00aad6', endColorstr='#ff0090c7', GradientType=0);
}
.modal .header.light {
	border-color: #ddd;
	background: #eee;
}
.modal .title {
	display:block;

	font-size:1.3em;
	font-weight:100;
	color:#fff;

	text-overflow: ellipsis;
	white-space: nowrap;
	-ms-flex: 12;
	flex: 12;
	overflow: hidden;
}
.modal .html {
	padding:15px;
}
.modal .footer {
	padding:10px;
	border-top:1px solid #ddd;
}
.modal .extend {
	text-decoration: underline;
	color:#fff;
	cursor:pointer;
}
.modal .close {
	display:block;
	margin:0 0 0 15px;
	text-decoration:none;
	color:#fff;
	cursor:pointer;
}
.modal .close:before {
	font-family:'icomoon';
	font-size:1.5em;
	content:'\EA0F';
}
.modal .close:hover {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg); 
	transform: rotate(180deg);
	color:rgba(0, 0, 0, 0.5);
}
.modal .light .close {
	color:#444;
}