html {
	height: 100%;
}

body {
	background-color: #f6f6f6;
	height: 100%;
}

body p {
	font-size: 0.9em;
}

body p.sub {
	color: #999;
}

a {
	color: #01aaed;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
	text-transform: uppercase;
	font-weight: 300;
}

#logo {
	color: #333;
}

.page {
	width: 980px;
	margin: auto;
	background-color: #FFF;
	border-radius: 0;
	margin-top: -70px;
	padding: 20px 0px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.page .header {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #EEE;
}

@media (min-width: 1200px) {
	.page {
		width: 1210px;
	}
}

@media (min-width: 768px) and (max-width: 979px) {
	.page {
		width: 764px;
	}
}

@media (max-width: 767px) {
	body {
		padding-left: 0;
		padding-right: 0;
	}

	.page {
		width: 100%;
	}

	.page-container {
		padding: 0px 20px;
	}

	#in-nav ul.pull-right {
		top: 0px !important;
	}

	.message-sidebar {
		margin-right: -20px !important;
	}
}

#in-nav {
	background-color: white;
	background-repeat: repeat;
	height: 50px;
	padding-top: 10px;
}

#in-nav ul {
	position: relative;
	top: 10px;
}

#in-nav ul li {
	list-style-type: none;
	display: inline;
}

#in-nav ul li a {
	padding: 10px;
}

#in-sub-nav {
	background-color: #333333;
	/* -moz-box-shadow: inset 0px 0px 10px #111111;
	 -webkit-box-shadow: inset 0px 0px 10px #111111;
	 box-shadow: inset 0px 0px 10px #111111; */
}

#in-sub-nav ul {
	text-align: center;
	margin-bottom: 80px;
}

#in-sub-nav li {
	list-style-type: none;
	display: inline-block;
	height: 107px;
}

#in-sub-nav li a {
	display: block;
	border-radius: 6px;
	padding: 15px 10px 5px;
	min-height: 56px;
	min-width: 64px;
	margin: 20px 10px 10px;
	color: #FFF;
	font-weight: 100;
}

#in-sub-nav li a i {
	display: block;
	font-size: 32px;
	margin-bottom: 20px;
}

#in-sub-nav li a:hover,
#in-sub-nav li a.active {
	background-color: #555;
	text-decoration: none;
}

#in-sub-nav li span.label.pull-right {
	position: relative;
	top: 24px;
	right: 14px;
}

footer {
	padding-top: 20px;
	padding-bottom: 20px;
	color: #999;
}

footer a {
	color: #999;
}

.divide {
	border-top: 1px solid #EEE;
	margin-top: 40px;
	padding-top: 40px;
}

.small-divide {
	border-top: 1px solid #EEE;
	margin-top: 20px;
	padding-top: 20px;
}

/* ============== messages ============== */
.message-sidebar {
	border-right: 1px solid #EEE;
	margin: -20px;
	margin-right: 0;
}

.message-sidebar a.message-preview {
	display: block;
	background-color: #F6F6F6;
	border-bottom: 1px solid #EEE;
	padding: 10px 20px;
}

.message-sidebar a.message-preview h4 {
	font-weight: 400;
	text-transform: none;
}

.message-sidebar a.message-preview p,
.message-sidebar a.message-preview h5 {
	color: #999;
}

.message-sidebar a.new {
	background-color: #FFF;
}

.message-sidebar a.active {
	background-color: #008DCD;
	color: #FFF;
}

.message-sidebar a.active p,
.message-sidebar a.active h5 {
	color: rgba(255, 255, 255, 0.8);
}

.message-sidebar a:hover {
	text-decoration: none;
	cursor: pointer;
}

.message-sidebar .load-more {
	text-align: center;
}

.message-sidebar .load-more a {
	padding: 20px;
	display: block;
}

@media (min-width: 768px) {
	.message-sidebar {
		overflow: auto;
		height: 700px;
	}
}

.messages h4 {
	text-transform: none;
	font-weight: 400;
}

.messages .message {
	padding-bottom: 20px;
	border-bottom: 1px solid #EEE;
	margin-bottom: 20px;
}

.messages .message h5 {
	font-weight: 300;
}

.messages .message-body {
	padding-left: 80px;
}

.messages .message-body textarea {
	height: 80px;
	margin-right: 20px;
	width: 96%;
}

/* ============== login ============== */
.login {
	position: absolute;
	width: 400px;
	top: 50%;
	left: 50%;
	padding: 25px 50px;
	border-radius: 10px;
	background-color: #fff;
	transform: translate(-50%, -50%);
}

.login .title {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.login label {
	display: block;
	font-size: 0.85em;
}

.login input {
	width: 386px;
}

.login button[type="submit"] {
	width: 100%;
	padding: 10px 0;
	border: none;
	color: #fff;
	text-shadow: none;
	background: #002B54;

	transition: background-color 0.3s ease-in-out;
	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
}

.login button[type="submit"]:hover,
.login button[type="submit"]:focus {
	background: #00a5e6;
}

.login button[type="submit"] i {
	margin-right: 5px;
}

.login #logo {
	display: block;
	width: 200px;
	margin: 0 auto 50px;
}

/* ============== sidebar ============== */
.sidebar {
	border-top: 1px solid #EEE;
}

.sidebar ul {
	padding: 0;
	margin: 0;
}

.sidebar ul li {
	list-style-type: none;
}

.sidebar ul li a {
	display: block;
	padding: 10px;
	border-bottom: 1px solid #EEE;
	text-transform: uppercase;
}

.sidebar ul li a:hover {
	background-color: #EEE;
	/*        color: #FFF;*/
	text-decoration: none;
}

.sidebar ul li ul {
	background-color: #F6F6F6;
	box-shadow: inset 0 1px 10px #E0E0E0;
}

/* ============== stat lists ============== */
ul.stat-list {
	margin: 0;
}

ul.stat-list li {
	list-style-type: none;
}

ul.stat-list li label,
ul.stat-list li h4,
ul.stat-list li small,
ul.stat-list li p {
	display: inline-block;
}

ul.stat-list li label {
	height: 32px;
	width: 32px;
	border-radius: 2px;
	text-align: center;
	vertical-align: middle;
	margin-right: 10px;
}

ul.stat-list li label i {
	margin-top: 8px;
}

ul.stat-list li h4 {
	font-weight: 600;
	margin-right: 10px;
	min-width: 30px;
}

ul.stat-list li h4.sub {
	color: #999;
	font-weight: 300;
}

.progress-small {
	height: 8px;
}

/* ============== widgets ============== */
.widget {
	background-color: #eeeeee;
	color: #555555;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.widget td.bar-label {
	width: 20%;
	text-align: right;
	padding-right: 20px;
	color: #999;
	font-weight: 300;
}

.widget td.bar-number,
.widget td.bar-percent {
	width: 15%;
	font-weight: 600;
}

.widget td.bar-percent span {
	font-weight: 300;
}

.widget td .progress {
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	display: block;
	width: 100%;
	height: 8px;
	overflow: hidden;
}

/* ============== sparks ============== */
.spark {
	margin-bottom: 20px;
}

.spark h4 {
	font-weight: 500;
}

.spark h4.sub {
	color: #999;
	font-weight: 300;
}

.spark h4.sub span.minus {
	color: #ea494a;
	float: right;
}

.spark h4.sub span.plus {
	color: #4cb158;
	float: right;
}

.spark .sparklines {
	float: right;
}

/* ============== knobs ============== */
.knob {
	text-align: center;
}

/* ============== table-panel ============== */
.table-panel i {
	margin: 4px;
}

.table-panel table {
	border-top: 1px solid #EEE;
}

/* ============== panels ============== */
.panel {
	width: 170px;
	background-color: #EEE;
	border-radius: 6px;
	text-align: center;
	display: inline-block;
	margin-bottom: 20px;
	margin-right: 20px;
}

.panel .top {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background-color: #555555;
	padding-top: 20px;
}

.panel .top i {
	display: block;
	margin: 0px auto 20px;
}

.panel .top h6 {
	display: inline;
	background-color: #555555;
	position: relative;
	top: 5px;
	padding: 6px 12px;
	border-radius: 30px;
	color: #FFF;
	font-weight: 600;
	font-size: 0.7em;
}

.panel .bottom {
	padding-top: 20px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	text-align: center;
	border-top: none;
}

.panel .bottom h2 {
	font-weight: 600;
	margin: 0;
}

.panel .bottom h6 {
	font-size: 0.7em;
	font-weight: 600;
	position: relative;
	bottom: 10px;
	color: #555555;
}

.panel .warning,
.panel .warning h6 {
	background-color: #ffa93c;
	/*    box-shadow: inset 0 0 10px lighten($warning, 8%);
        border: 1px solid darken($warning, 20%)*/
}

.panel .success,
.panel .success h6 {
	background-color: #4cb158;
	/*    box-shadow: inset 0 0 10px lighten($success, 8%);
        border: 1px solid darken($success, 20%)*/
}

.panel .danger,
.panel .danger h6 {
	background-color: #ea494a;
	/*    box-shadow: inset 0 0 10px lighten($danger, 8%);
        border: 1px solid darken($danger, 20%)*/
}

.panel .info,
.panel .info h6 {
	background-color: #14b8d4;
	/*    box-shadow: inset 0 0 10px lighten($info, 8%);
        border: 1px solid darken($info, 20%)*/
}

.panel .primary,
.panel .primary h6 {
	background-color: #007ccd;
	/*    box-shadow: inset 0 0 10px lighten($primary, 8%);
        border: 1px solid darken($primary, 20%)*/
}

.panel .purple,
.panel .purple h6 {
	background-color: #7932ea;
	/*    box-shadow: inset 0 0 10px lighten($purple, 8%);
        border: 1px solid darken($purple, 20%)*/
}

/* ============== profile ============== */
.stats {
	text-align: center;
}

.stats .stat {
	background-color: #eeeeee;
	color: #555555;
	padding: 10px;
	border-radius: 6px;
	margin-bottom: 20px;
	text-align: center;
}

.stats .stat h2 {
	font-weight: 600;
}

.stats .stat h6 {
	margin-top: -10px;
}

.stats .warning {
	background-color: #ffa93c;
	color: #FFF;
}

.stats .success {
	background-color: #4cb158;
	color: #FFF;
}

.stats .danger {
	background-color: #ea494a;
	color: #FFF;
}

.stats .info {
	background-color: #14b8d4;
	color: #FFF;
}

.stats .primary {
	background-color: #007ccd;
	color: #FFF;
}

.stats .purple {
	background-color: #7932ea;
	color: #FFF;
}

.stats .inverse {
	background-color: #333;
	color: #FFF;
}

.rating-star,
.no-star,
.half-star {
	display: inline-block;
	height: 16px;
	width: 16px;
	background-image: url(../img/stars.png);
}

.no-star {
	background-position: 0 -16px;
}

.half-star {
	background-position: 0 -32px;
}

.profile-sidebar ul {
	margin: 0;
	margin-top: 20px;
}

.profile-sidebar ul li {
	list-style-type: none;
	border-top: 1px solid #EEE;
	padding: 10px 0px;
}

.profile-sidebar ul li i {
	margin-right: 5px;
}

/* ============== tables ============== */
.tables code {
	display: inline-block;
	margin: 2px;
}

/* ============== stream ============== */
.filters input[type="checkbox"] {
	float: left;
	margin-right: 10px;
}

.filters h5 {
	margin-top: 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid #EEE;
}

.filters span {
	color: #999;
}

.stream .item {
	border-bottom: 1px solid #EEE;
	padding: 10px 0px 30px 60px;
}

.stream .item .stream-icon {
	display: inline-block;
	background-color: #CCC;
	border-radius: 4px;
	height: 40px;
	width: 40px;
	text-align: center;
	margin-left: -40px;
	margin-bottom: -40px;
	position: relative;
	top: 15px;
	right: 20px;
	float: left;
}

.stream .item .stream-icon i {
	margin-top: 12px;
}

.stream .item .stream-success {
	background-color: #4cb158;
}

.stream .item .stream-danger {
	background-color: #ea494a;
}

.stream .item .stream-warning {
	background-color: #ffa93c;
}

.stream .item .stream-info {
	background-color: #14b8d4;
}

.stream .item .avatar {
	border-radius: 4px;
	margin-left: -40px;
	margin-bottom: -40px;
	height: 40px;
	position: relative;
	top: 15px;
	right: 20px;
	float: left;
}

.stream .item h4 {
	margin-bottom: 6px;
}

.stream .item p {
	color: #777;
}

.stream .item p.date {
	padding: 0;
	float: right;
	margin-top: 10px;
}

/* ============== faq ============== */
.qa {
	border-bottom: 1px solid #EEE;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.qa h4 {
	text-transform: none;
	font-weight: 400;
}

/* ============== calendar ============== */
.event {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
	border-top: 1px solid #EEE;
	padding-top: 10px;
}

.event p {
	color: #999;
}

.event h4 {
	text-transform: none !important;
	font-weight: 500;
	color: #008dcd;
	margin: 5px 0px;
}

.event .date {
	text-align: center;
	display: inline-block;
	border-left: 4px solid #EEE;
	padding-left: 16px;
	float: left;
	margin-right: 20px;
}

.event .date h1 {
	font-weight: 500;
	line-height: 0.8em;
}

.event .date h4 {
	line-height: 1em;
	color: #555555;
	font-weight: 300;
}

.event .success {
	border-color: #4cb158;
}

.event .danger {
	border-color: #ea494a;
}

.event .info {
	border-color: #14b8d4;
}

.event .primary {
	border-color: #007ccd;
}

.event .warning {
	border-color: #ffa93c;
}

.event .purple {
	border-color: #7932ea;
}

.event .inverse {
	border-color: #333;
}

#events .load-more {
	text-align: center;
}

@media (min-width: 768px) {
	#events {
		overflow: auto;
		height: 600px;
	}
}

#calendar h2 {
	font-size: 17.5px;
}

#calendar th {
	background-color: #EEE;
}

#calendar th,
#calendar td {
	border-color: #EEE;
}

#calendar .fc-event-skin {
	background-color: #007ccd;
	border: 1px solid #007ccd;
	border-radius: 4px;
	text-align: center;
}

/* ============== tags ============== */
.tag {
	display: inline-block;
	background-color: #EEE;
	padding: 3px 8px;
	margin-right: 5px;
	margin-bottom: 5px;
	border-radius: 4px;
}

.tag:hover {
	background-color: #008dcd;
	color: #FFF;
	text-decoration: none;
}

/* ============== settings ============== */
.settings-group {
	margin-top: 40px;
}

/* ============== flags ============== */
.header-with-languages {
	position: relative;
}

.header-with-languages .language-flags {
	position: absolute;
	top: 10px;
	right: 20px;
}

.header-with-languages .language-flags .flag-icon {
	font-size: 3em;
	margin-right: 5px;
}

/* ============== Pages ============== */
#pagetree li {
	line-height: 30px;
}

#pagetree .actions {
	text-align: right;
}

#pagetree span {
	margin-right: 30px;
}

#pagetree li:hover>.btn-group {
	display: none;
}

.nestedsortable ol li div {
	text-align: right;
}

.nestedsortable ol li div span {
	float: left;
}

/* .nestedsortable ol li div a {margin-right: 20px;} */
.nestedsortable ol li div:hover {
	background-color: #eee;
}

.nestedsortable li {
	line-height: 20px;
	padding: 3px 0 3px;
	text-align: left;
	list-style: none;
}

.nestedsortable ol {
	margin: 0;
}

.nestedsortable ol ol {
	margin-left: 20px;
	padding-left: 10px;
	border-left: 1px dashed #333;
	margin-bottom: -2px;
	margin-top: 2px;
}

@media (max-width: 768px) {
	.nestedsortable .btn-group>a {
		display: block;
		margin: 4px 0;
	}

	.nestedsortable li {
		margin: 20px 0 0 0;
		border-top: 1px solid #333;
	}
}

.page {
	position: relative;
}

#in-sub-nav i {
	border: 0;
}

#product-category-load {
	font-size: 17px;
	padding: 5px;
	margin-left: 2px;
}

.clone-item {
	display: block;

	margin-bottom: 10px;
}

.clone-item > img {
	display: block;
    max-width: 120px;
    margin-bottom: 2px;
	visibility: visible;
}

.clone-item > img[src=""] {
	visibility: hidden;
}

.cloner .clone {
	display: none;
}

#FilterModal {
	width: 700px;
}

.btn-group .btn.disabled {
	text-decoration: line-through;
}

form.pupdate fieldset {
	border: 1px solid #ddd;
	padding: 10px;
	margin-bottom: 20px;
}

form.pupdate fieldset>label.checkbox {
	font-size: 12px;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.bold {
	font-weight: bold;
}

#form-orderprocessing-collect .amount {
	font-size: 2em;
	line-height: 2.2em;
	color: #008dcd;
}

#form-orderprocessing-collect .name {
	font-size: 1.3em;
	line-height: 1.5em;
	color: #3B3B3B;
}

#form-orderprocessing-collect .name strong {
	margin-bottom: 5px;
	display: block;
}

.btn-cut {
	clear: right;
	margin-bottom: 75px;
}

#start-collecting {
	margin: 50px 0;
	padding: 30px 0;
	background: #eee;
	border-top: 2px dashed #333;
	border-bottom: 2px dashed #333;
}

#start-collecting button.btn.btn-default {
	display: inline;
}

.sidebar i {
	color: #002d58;

	min-width: 25px;
}

.table td.with-table-input {
	padding: 0;
}

.form-horizontal input.table-input {
	width: 90%;
	height: 100%;
	display: block;
	padding: 8px;
	margin: 0;
	border: 0;
	outline: 0;
	box-shadow: none;
}


body.orders-index tr.cancelled td {
	color: #ccc;
}

body.orders-index tr.cancelled td:hover {
	color: #000;
}


input[type=checkbox].select-all {
	box-shadow: 0 0 4px #f89406;
}

.help-block {
	color: red;
}

.help-inline {
	vertical-align: top !important;
}

.select2-result-product {
	padding-top: 4px;
	padding-bottom: 3px;
}

.select2-result-product__avatar {
	float: left;
	width: 60px;
	margin-right: 10px;
}

.select2-result-product__avatar img {
	width: 100%;
	height: auto;
	border-radius: 2px;
}

.select2-result-product__meta {
	margin-left: 70px;
}

.select2-result-product__title {
	color: black;
	font-weight: bold;
	word-wrap: break-word;
	line-height: 1.1;
	margin-bottom: 4px;
}

.select2-result-product__forks,
.select2-result-product__stargazers {
	margin-right: 1em;
}

.select2-result-product__forks,
.select2-result-product__stargazers,
.select2-result-product__watchers {
	display: inline-block;
	color: #aaa;
	font-size: 11px;
}

.select2-result-product__description {
	font-size: 13px;
	color: #777;
	margin-top: 4px;
}

.select2-results__option--highlighted .select2-result-product__title {
	color: white;
}

.select2-results__option--highlighted .select2-result-product__forks,
.select2-results__option--highlighted .select2-result-product__stargazers,
.select2-results__option--highlighted .select2-result-product__description,
.select2-results__option--highlighted .select2-result-product__watchers {
	color: #c6dcef;
}

.img-preview {
	padding: 5px;
	max-width: 160px;
	width: auto;
	height: auto;
	display: block;
	margin-bottom: 20px;
	border: 1px dotted #ccc;
}

.ckeditor-tree {
	max-width: 230px;
}

#modeldata.tab-pane h4 {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.table-small th,
.table-small td {
	font-size: 12px;
}

.header-with-languages .language-flags {
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 10px;
	position: fixed;
}

.header-with-languages .language-flags>a.language-switch {
	display: block;
}

.header-with-languages .language-flags>a.language-switch>.flag-icon {
	width: 40px;
	margin: 0;
}

#order-detail-page {
	font-size: 14px;
}

#order-detail-page h1 {
	font-size: 1.5rem;
	margin: 20px 0;
}



#logo {
	display: block;
	width: 240px;
	overflow: hidden;
}

#logo:hover {
	text-decoration: none;
}

#logo:hover strong {
	text-decoration: underline;
}

#logo small {
	display: block;
}

#menu-system-switch {
	display: inline-block;
	position: absolute;
	margin-top: 0px;
	left: 50%;
	transform: translateX(-50%);
}

#menu-system-switch i {
	font-size: 16px;

	margin-right: 5px;
}

#menu-system-switch a {
	color: #000;
	display: inline-block;
	padding: 5px 3px;
	border-bottom: 3px solid #ccc;
	background-color: #fff;
	font-size: 1em;
	margin-top: 3px;
	margin-right: 20px;
}

#menu-system-switch a:hover {
	text-decoration: none;
	border-bottom: 3px solid #85BD41;
	color: orange;
}

#menu-system-switch a.active {
	border-bottom: 3px solid #85BD41;
	font-weight: bold;
	text-decoration: none;
}

form.form-horizontal label.control-label {
	text-align: left;
}

.filemanager-file .thumbnail {
	max-height: 200px;
}

.filemanager-file span {
	display: block;
}

.filemanager-file .fileactions {
	padding-top: 20px;
}

.tab-pane#media .filemanager-file {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #eee;
}

.tab-pane#media .filemanager-file:first-child {
	margin-top: 0;
	border-top: none;
	padding-top: 0;
}

#modal-filemanager {
	border: 0;
	border-radius: initial;
}

.filemanager-file video {
	width: 100%;
	height: auto;
	display: block;
	max-height: none;

}

.filemanager-file .video {
	position: relative;
	height: auto;
	display: block;
	max-height: none;
	padding: 0;
	margin: 0;
}

.filemanager-file .file-field-name {
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	display: block;
}

#modal-filemanager {
	position: fixed;
	display: none;
	top: 50%;
	left: 50%;
	margin: 0;
	width: 1250px;
	height: 600px;

	border: none;
	border-radius: 0;
	transform: translate(-50%, -50%);
}

#modal-filemanager .modal-content {
	height: 100%;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	overflow: hidden;
}

#modal-filemanager iframe {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
}

.modal-backdrop,
.modal-backdrop.fade.in {
	background-color: rgba(0, 0, 0, 0.9);
}

.input-prepend input {
	width: 178px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #eee;
	color: #000;
}

.page {
	margin-top: -50px;
}

#in-sub-nav .container {
	padding-bottom: 60px;
}

#in-sub-nav ul {
	margin-bottom: 15px;
}

.mt-10 {
	margin-top: 10px;
}

.cke_chrome {
	max-width: 725px;
}

#in-nav ul li a {
	color: #00a5e6;
}

.filepicker-parent {
	padding-bottom: 20px;
	margin-bottom: 50px;
	border-bottom: 1px solid #eee;
}

.filepicker-parent .file-field-name {
	color: #017BC2;
	font-weight: 600;
	font-size: 1.3em;
	text-transform: uppercase;
}

.filepicker-parent .image img {
	margin: 15px 0;
	border-radius: 10px;
	border: 1px solid #eee;
}

.filepicker-parent .video {
	margin: 15px 0;
}

.filepicker-parent .filepicker-target-fileinfo {
	margin-bottom: 5px;
}

.filepicker-parent .filepicker-target-mime {
	font-style: italic;

	font-size: 0.9em;
}

.results-count {
	margin-left: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	display: block;
	padding: 3px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

input[type="text"],
.input-append input,
.input-append select,
.input-append textarea {
	border-radius: 0;
}

.input-append .add-on:last-child {
	border-radius: 0;
}

button.btn, input[type="submit"].btn {
	background: #002B54;
	color: #fff;
	border: none;
	text-shadow: none;

	transition: background-color 0.3s ease-in-out;
	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
}

button.btn:hover,
button.btn:focus {
	background: #00a5e6;

	color: #fff;
}

fieldset {
	display: block;
	margin-left: 2px;
	margin-right: 2px;
	padding-top: 0.35em;
	padding-bottom: 0.625em;
	padding-left: 0.75em;
	padding-right: 0.75em;
	border: 2px groove #eee;
	margin-bottom: 10px;
}

.controls .ui-datepicker-trigger {
	margin-left: 5px;
}

.selection-block {
	border: 1px solid #e7e7e7;
	text-align: center;
	display: block;
	padding: 30px;
	color: #333;
	margin-top: 20px;
	border-radius: 5px;

	transition: background-color 0.3s ease-in-out;
	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
}

.selection-block:hover,
.selection-block:focus {
	text-decoration: none;

	background-color: #eee;
}

.selection-block .title {
	color: #002B54;
	display: block;
	font-weight: 600;
	font-size: 28px;
	margin-bottom: 50px;
}

.selection-block .icon {
	font-size: 52px;

	color: #00A5E6;
}

/** CKEDITOR FIXES **/
.cke_dialog, .cke_dialog_footer {
	width: 485px !important;
}

a.cke_dialog_ui_button {
	margin-top: 22px !important;
}

select.cke_dialog_ui_input_select {
	min-width: 150px !important;
}
