@charset "UTF-8";
body {
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	background-color: white;
	color: #343434;
}
body .ui-widget {
	font-size: 1em;
}
.hidden { display: none; }
a.ulink {
	text-decoration: underline;
	color: #0389C7;
}
a.ulink:hover { color: #009CE3; }

/* INPUT */
input[type="text"],
input[type="password"],
textarea {
	color: #595959;
	width: 260px;
	padding: 2px 4px;
	
	border: 1px solid #d7d7d7;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	background: #f2f2f2;
	background: -moz-linear-gradient(top,  #f2f2f2 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #f2f2f2 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #f2f2f2 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #f2f2f2 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #f2f2f2 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
}
input[type="text"]:disabled,
input[type="password"]:disabled,
textarea:disabled {
	background: none;
	background-color: #E6E6E6;
	border-color: #C7C7C7;
}
input[type="text"]:disabled:active,
input[type="password"]:disabled:active,
textarea:disabled:active {
	border-color: #C7C7C7;
	background-color: lightgrey;
}
input[type="text"]:active,
input[type="text"]:focus,
input[type="password"]:active,
input[type="password"]:focus,
textarea:active,
textarea:focus {
	border-color: #0c92df;
	outline: none;
	background: none;
	background-color: #fff;
}
input[type="text"].error,
input[type="password"].error {
	border-color: #ed145b;
}
select {
	min-width: 75px;
}

/* Admin panel */
#adminWrap {
	height: auto;
	min-height: 100%;
	width: 100%;
	min-width: 1000px;
}
#adminWrap .adminMenuBack {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 98;
	width: 150px;
	background-color: #ECECEC;
	border: 1px solid #CCC;
}
#adminWrap .adminMenu {
	position: fixed;
	float: left;
	width: 150px;
	z-index: 99;
}
#adminWrap .adminMenu li a {
	display: block;
	font-size: 110%;
	font-weight: bold;
	
	padding: 5px 8px;
	margin: 5px 0;
	color: #21759B;
	border-top: 1px solid #F9F9F9;
	border-bottom: 1px solid #DFDFDF;
	cursor: pointer;
}
#adminWrap .adminMenu li a:hover {
	color: #D54E21;
	background-color: #E4E4E4;
}
#adminWrap .adminMenu li span a {
	font-size: 100%;
	border-top: none;
	border-bottom: none;
	font-weight: normal;
	padding: 3px 0 3px 20px;
	margin: 1px 0;
}
#adminWrap .adminMenu .subMenu { display: block }

.adminContent {
	margin-left: 170px;
	padding: 20px 20px 20px 0;
}


/* BUTTONS */
.buttonimg {
	cursor: pointer;
	font-weight: bold;
	display: inline-block;
}
.buttonimg .left,
.buttonimg .right,
.buttonimg .middle {
	height: 52px;
	float: left;
}
.blueButton .left {
	background: transparent url('/images/blue-button-left.png') 0 0 no-repeat;
	width: 20px;
}
.blueButton .right {
	background: transparent url('/images/blue-button-right.png') 0 0 no-repeat;
	width: 20px;
}
.blueButton .middle {
	font-size: 1.2em;
	line-height: 3.5em;
	color: white;
	padding: 0 15px;
	background: transparent url('/images/blue-button-middle.png') 0 0 repeat-x;
}
.greenButton .left {
	background: transparent url('/images/green-button-left.png') 0 0 no-repeat;
	width: 20px;
}
.greenButton .right {
	background: transparent url('/images/green-button-right.png') 0 0 no-repeat;
	width: 20px;
}
.greenButton .middle {
	font-size: 1.2em;
	line-height: 3.5em;
	color: white;
	padding: 0 15px;
	background: transparent url('/images/green-button-middle.png') 0 0 repeat-x;
}
.whiteButton .left {
	background: transparent url('/images/white-button-left.png') 0 0 no-repeat;
	width: 20px;
}
.whiteButton .right {
	background: transparent url('/images/white-button-right.png') 0 0 no-repeat;
	width: 20px;
}
.whiteButton .middle {
	font-size: 1.2em;
	line-height: 3.5em;
	color: #6e6e6e;
	padding: 0 15px;
	background: transparent url('/images/white-button-middle.png') 0 0 repeat-x;
}

/* Main-Wrapper */
.mainWrapper {
	margin: 20px auto 0;
	width: 1260px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.companyTitle {
	font-size: 2em;
	line-height: 1.2em;
	padding-left: 15px;
}

/*  --      Left-Panel       --  */
.panelNav {
	float: left;
	width: 208px;
}
.panelNav ul {
	margin: 20px auto 0;
	width: 180px;
}
.panelNav ul li {
	background: transparent url("/images/navBG.png") 0 0 no-repeat;
	border-top: 1px solid #fff;
	font-weight: bold;
}
.panelNav ul li.current {
	background: transparent url('/images/navBG-hover.png') 0 0 no-repeat;
}
.panelNav ul li:first-child {
	border-top: none;
}
.panelNav a {
	text-decoration: none;
	color: #fff;
	display: block;
	padding: 5.5% 7%;
	font-size: 1.2em;
}
.panelNav a:hover {
	color: #575757;
}

/* CENTER BLOCK */
#companyAdd .edit.buttonimg,
#brandAdd .edit.buttonimg { float: right }

.centerBlock {
	margin-top: 10px;
	padding: 0 10px;
	float: left;
	width: 1030px;
}

.centerBlock .wrapper {
	width: auto;
	color: #444;
}
	
/*  --  Media-Center-Block  --  */
.centerBlock .defaultInfoBlock {
	padding: 15px 0 15px 20px;
}
.singleLine.noHover:hover {
	background-color: inherit;
}
#tradeEdit .singleLine input.short {
	width: 120px;
}
.singleLine .tableTitle {
	text-align: center;
	font-size: 1.1em;
	padding: 4px 0;
}
.centerBlock h4 {
	width: 188px;
	margin: 0;
	float: left;
	text-align: left;
	color: #000;
	line-height: 25px;
}
.centerBlock h4 span {
	color: #F00;
	font-size: 0.9em;
}
.centerBlock .property {
	width: 667px;
	float: left;
	line-height: 25px;
}
.centerBlock .media .property { 
	width: 645px;
	min-height: 126px
}
.centerBlock .property .propertyLabels,
.centerBlock .property .propertyLabelsNonActive {
	width: 173px; /*170*/
	padding-right: 15px;
	text-align: right;
	float: left;
}
.centerBlock .property .propertyValues,
.centerBlock .property .propertyValuesNonActive {
	float: left;
}
.centerBlock .property .propertyValues .unactive {
	color: #D10000;
}
.centerBlock .hiddenBlock {
	display: none;
	position: relative;
	min-height: 30px;
	padding: 15px 20px;
	background-color: #F3F3F3;
}
.centerBlock .hiddenBlock .property,
.centerBlock .hiddenBlock .activityDisplay {
	width: 800px;
	float: right;
}
.centerBlock .hiddenBlock .labelDiv {
	width: 170px;
	height: 25px;
	padding-right: 18px;
	float: left;
	text-align: right;
}
.centerBlock .hiddenBlock .inputDiv {
	float: left;
	padding: 0;
	min-height: 25px;
	line-height: 1.5em;
}
.centerBlock .hiddenBlock .property .inputDiv textarea {
	height: 70px;
	resize: none;
}
.centerBlock .hiddenBlock .property .inputDiv textarea.comment {
	max-width: 550px;
	width: 550px;
	height: 100px;
	resize: auto;
}
.centerBlock .hiddenBlock .property .inputDiv select {
	max-width: 260px;
}
.centerBlock .hiddenBlock .property .inputDiv input[type="checkbox"] { height: 25px; }
.centerBlock .submitBtn {
	min-height: 30px;
	width: 1010px;
	padding: 15px 20px;
}
.centerBlock .submitBtn .property {
	width: 822px;
}
.centerBlock .submitBtn .property .labelDiv {
	width: 170px;
	height: 25px;
	padding-right: 15px;
	text-align: right;
	float: left;
	text-align: right;
}
.centerBlock .submitBtn .property .inputDiv {
	float: left;
	padding: 0;
	width: 637px;
	min-height: 25px;
	line-height: 1.5em;
}
.centerBlock .submitBtn input {
	min-width: 150px;
	padding: 5px 0;
	text-align: center;
	border: none;
	color: #fff;
	background-color: #00a1e8;
}
.centerBlock .submitBtn input:disabled {
	background-color: #ccc;
}
.centerBlock .submitBtn input:disabled:hover {
	background-color: #ccc;
}
.centerBlock .submitBtn input:hover {
	background-color: #8ec83e;
	color: #333;
	border: none;
	text-decoration: underline;
}
.centerBlock .submitBtn input.discardChanges {
	min-width: 0px;
	background:  none;
	font-weight: bold;
	color: #000;
}
.centerBlock .submitBtn input.discardChanges:hover {
	background: none;
	color: red;
}
.centerBlock .hiddenBlock .property .row:first-child { font-weight: bold }
.centerBlock .hiddenBlock .property .row span {
	text-align: left;
	line-height: 170%;
	margin-bottom: 5px;
}
.centerBlock .hiddenBlock .property .row span.lastCol {
	min-width: 90px;
}
.centerBlock .hiddenBlock .property .row input {
	width: 40px;
	text-align: center;
}
.mediaButton {
	width: 155px;
	height: 30px;
	float: left;
	text-align: center;
	line-height: 30px;
	background-color: #00a1e8;
	cursor: pointer;
	color: #fff;
	font-weight: bold;
	border: none;
}
.centerBlock .manageButtons {
	padding: 0 0 10px 20px;
	border-bottom: 1px solid #eee;
}
.centerBlock .manageButtons .offersNum { 
	float: left;
	font-size: 1.7em;
	line-height: 50px;
	max-width: 600px;
	overflow: hidden;
}
.centerBlock .manageButtons .button { float: right } 
.displayNone { display: none }
.media img,
.media iframe {
	width: 174px;
	height: 126px;
	float: left;
	border: 1px solid lightgrey;
}
.media.logo img {
	width: 130px;
	height: auto;
}
.media.wallpaper img {
	width: 176px;
	height: auto;
}
.imgCont {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 176px;
	height: 130px;
}
.imgCont img { 
	max-width: 176px;
	max-height: 120px;
}
.centerAlign { text-align: center }
.centerAlign .uploadCont { display: inline-block }

.uploadCont .playIcon {
	width: 260px;
	height: 195px;
	position: absolute;
	background: #E6E6E6 url('../images/play-icon.png') center center no-repeat;
}
.uploadCont.video {
	width: 260px;
	height: 195px;
}
#newForm .video input { width: 290px }
.descriptionYt {
	float: left;
	padding-left: 170px;
}
.descriptionYt span { color: #08C; }
.refresh {
	position: absolute;
	top: 195px;
	left: 0;
	width: 260px;
	text-align: center;
}
.refresh .button { display: inline-block }

/* --  Add new offer, picture  --  */
.newForm {
	padding: 20px 0 0;
}
.newForm label { 
	display: block;
	float: left; 
	margin-bottom: 4px;
}
.newForm label.marginTop { margin-top: 30px }

.newForm label .columnView { width: 150px }
.newForm input { width: 350px }
#newOfferForm input[name="promo_price"],
#newOfferForm input[name="normal_price"] { width: 50px }
#newOfferForm input[name="validity"],
#newOfferForm input[name="phone"],
#newOfferForm input[name="email"] { width: 200px }
.newForm textarea { width: 350px }
#newOfferForm textarea { width: 680px }
#newOfferForm .descrTerms label { margin-top: 5px }
#newOfferForm .descrTerms label:first-child { margin-top: 10px }
.newForm .floatLeft { 
	float: left;
	margin-left: 0;
}
.newForm .floatLeft:first-child { margin-left: 30px }
#newOfferForm .descrTerms { margin-top: 20px; }
.newForm .singleLine.lastRow { 
	margin-top: 60px;
	padding: 5px 0;
}
#newOfferForm .singleLine.lastRow { margin-top: 20px; }
.lightgrey {
	display: inline-block;
	padding-left: 15px;
	color: #B3B3B3;
	font-size: 1em;
}
.uploadCont {
	position: relative;
	background: rgba(0, 0, 0, 0) url('/images/single-offer-bg.png') 0 0 no-repeat;
	width: 194px;
	height: 146px;
}
#uploadingImg {
	position: relative;
	text-align: center;
	width: 174px;
	height: 126px;
	margin: 10px 0 0 10px;
	background-color: white;
	border: 1px solid transparent;
	cursor: pointer;
}
#uploadingImg span.text {
	display: block;
	width: 155px;
	margin: 0 10px;
	position: absolute;
	top: 65px;
	overflow: hidden;
}
#uploadingImg span.size {
	display: block;
	width: 112px;
	position: absolute;
	color: #868686;
	top: 10px;
	left: 55px;
}
#uploadingImg span.browse {
	position: absolute;
	top: 130px;
	left: 0;
	display: block;
	width: 272px;
}
#uploadingImg span.browse span { display: block }
#uploadingImg.imgEmpty {
	background: transparent url('/images/default-image-bg.png') 0 0 repeat-x;
	border: 1px solid #FFA8C5;
}
#uploadingImg .iconEmpty {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('/images/default-image-small.png') 0 0 no-repeat;
	width: 50px;
	height: 51px;
}
#switchContainer {
	position: absolute;
	right: 30px;
	top: 23px;
}
#userModified {
	position: absolute;
	left: 30px;
	top: 23px;
	color: #808080;
	font-size: 1.1em;
	line-height: 18px;
}

/* --  Offer PopUp Window  --  */

.showTHEpopUp {
	cursor: pointer;
	text-decoration: underline;
}

.ui-widget-overlay {
	background: #000;
	opacity: .8;
	filter: Alpha(Opacity=80);
}

.popitaiDialog.ui-dialog,
.popitaiDialog.ui-widget,
.popitaiDialog.ui-widget-content,
.popitaiDialog.ui-corner-all,
.popitaiDialog.ui-front,
.popitaiDialog.ui-draggable {
	border-radius: 0px;
	border: 1px solid #000;
	padding: 0;
}

.popitaiDialog.ui-dialog .ui-dialog-content {
	padding: 0;
	background-image: url("");
}
.popitaiDialog.ui-dialog .ui-dialog-titlebar {
	display: none;
}

	.popitaiDialog .closeOfferBtn {
		position: absolute;
		top: 0px;
		right: 0px;
		padding: 7px;
		cursor: pointer;
	}

	.popitaiDialog .offerPicture {
		float: left;
		width: 850px;
		height: 570px;
		text-align: center;
		background-color: #000;
		display: table;
		position: absolute;
	}
	
	.popitaiDialog .offerPicture .thePicture {
		display: table-cell;
		vertical-align: middle;
		width: 850px;
		height: 570px;
	}
	
		.popitaiDialog .offerPicture .thePicture img {
			max-width: 850px;
			max-height: 570px;
		}
		
		.popitaiDialog .offerPicture .prevHovLink {
			display: table-cell;
			vertical-align: middle;
			position: absolute;
			top: 72px;
			left: 0px;
		}
		
		.popitaiDialog .offerPicture .nextHovLink {
			display: table-cell;
			vertical-align: middle;
			position: absolute;
			top: 72px;
			right: 1px;
		}
			
	
	.popitaiDialog .offerInfo {
		float: right;
		width: 360px;
		height: 570px;
		padding-left: 10px;
		background-color: #eee;
	}
	
.ui-timepicker-div dl dt {
	height: 25px;
	margin-bottom: -25px;
}

.ui-timepicker-div dl dd {
	margin: 0 10px 10px 65px;
}

dl {
	display: block;
	margin: 0.5em 0 1em;
	
}

/* Select Multiple Records */
.singleLine label {
	display: inline-block;
	margin-bottom: 3px;
}
.hiddenBlock .labelDiv span.error,
.hiddenBlock .columnView span.error { color: #ED145B }

.multipleRecords {
	display: inline-block;
	float: left;
	margin-bottom: 8px;
}
.multipleRecords span {
	display: inline-block;
	width: 170px;
	line-height: 25px;
	padding-right: 15px;
	text-align: right;
	font-weight: bold;
}
.multipleRecords select,
.defaultInfoBlock .propertyValues select {
	width: 260px;
}
.multipleRecords input[type="button"],
.singleLine .subAdd,
.singleLine .subRemove {
	height: 20px;
	width: 30px;
	font-weight: bold;
	border: 1px solid #C0C0C0;
	background-color: #8DC63F;
	color: #FFF;
}
.singleLine .tooltip {
	margin-left: 190px;
	color: grey;
}
.asyncLoading {
	display: none;
	width: 800px;
	left: 230px;
	height: 100%;
	position: absolute;
	top:0;
	background: #F3F3F3 url('/images/async-loading.gif') center center no-repeat;
}
.multipleRecords input[type="button"].addRecord:disabled {
	background-color: #AFAFAF;
	cursor: default;
}
.multipleRecords input[type="button"].removeRecord,
.singleLine .subRemove {
	background-color: #FF6254;
}
.multipleRecords input[type="button"].removeRecord:disabled {
	background-color: #FFB8B2;
	cursor: default;
}
span.columnView {
	display: inline-block;
	width: 170px;
	line-height: 25px;
	padding-right: 15px;
	text-align: right;
}
.centerBlock .hiddenBlock .worktime .right {
	width: 380px;
}
.centerBlock .hiddenBlock .worktime input[readonly] { 
	background: none;
	background-color: #D6D6D6; 
}
.centerBlock .hiddenBlock .worktime .row:first-child { font-weight: bold }
.centerBlock .hiddenBlock .worktime .row span {
	display: inline-block;
	min-width: 70px;
	text-align: center;
	line-height: 170%;
	margin-bottom: 5px;
}
.centerBlock .hiddenBlock .worktime .row span:first-child { min-width: 120px; text-align: center }
.centerBlock .hiddenBlock .worktime .row span.lastCol {
	min-width: 90px;
}
.centerBlock .hiddenBlock .worktime .right span input { width: 40px; float:none; }

.singleLine .subCont {
	margin-top: 20px;
	border-left: 3px solid #D3D3D3;
	padding-left: 10px;
}
.singleLine .subCont .group {
	padding: 5px;
	background-color: #EBEBEB;
}
.singleLine .subCont .group label:first-child { border-top: none }
.singleLine .subCont .group span {
	min-width: 127px;
}
.singleLine .subCont .addRemove {
	margin-top: 5px;
}
.singleLine {
	border-bottom: 1px solid #E9E9E9;
}
.singleLine:hover {
	background-color: #E9E9E9;
}
#deleteOfferDialog p,
#deleteDialog p {
	font-size: 1.3em;
	padding: 0 25px;
	text-align: center;
	margin-top: 56px;
}
.singleLine.lastRow.bottom {
	position: absolute;
	bottom: 0;
	width: 500px;
}
.singleLine.lastRow {
	border-top: 2px solid #CECECE;
	text-align: center;
	padding: 10px 0;
	
	background: -moz-linear-gradient(top,  #fafafa 0%, #ebebeb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fafafa), color-stop(100%,#ebebeb));
	background: -webkit-linear-gradient(top,  #fafafa 0%,#ebebeb 100%);
	background: -o-linear-gradient(top,  #fafafa 0%,#ebebeb 100%);
	background: -ms-linear-gradient(top,  #fafafa 0%,#ebebeb 100%);
	background: linear-gradient(to bottom,  #fafafa 0%,#ebebeb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ebebeb',GradientType=0 );
}
.singleLine.lastRow .buttonimg:first-child { margin: 0 }
.singleLine.lastRow .buttonimg {
	display: inline-block;
	margin-left: 10px;
}
.edit.button,
.editOffer.button,
.deleteOffer.button { float: right }
.deleteOffer.button {
	margin-top: 20px;
}
.manageButtons .button .middle,
.media .button .middle { 
	min-width: 115px;
	text-align: center;
}

input.requiredActive,
input:focus.requiredActive,
input.errorActive,
textarea.requiredActive,
textarea:focus.requiredActive,
select.requiredActive {
	border: 1px solid #ed145b;
}
span.required,
span.info {
	color: grey;
	display: inline-block;
	padding-left: 5px;
}
span.required { color: red; font-weight: normal; }
.singleLine input[type="text"], 
.singleLine input[type="password"], 
.singleLine textarea { width: 350px }
.centerBlock .hiddenBlock .property .inputDiv textarea.large {
	width: 740px;
	height: 270px;
	resize: auto;
}
#categoryByActivity { padding: 0 110px 15px 40px }
#categoryByActivity span { color: #399C0B; font-weight: bold }

.relative { position: relative }
#loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 1);
	background-image: url('/images/result-map-preload2.gif');
	background-repeat: no-repeat;
	background-position: center 100px;
}

#title {
	font-size: 16px;
	text-align: center;
	background-color: #D3FF98;
	color: #444;
	padding: 5px;
	position: fixed;
	top: 30px;
	left: 180px;
	width: 1020px;
	z-index: 1000;
}
.dialogSettings {
	line-height: 25px;
	font-weight: bold;
	background-color: #FFF0EC;
	color: #444;
	padding: 5px;
	border: 1px dashed #CCC;
}
.dialogSettings span {
	display: inline-block;
	text-align: right;
	width: 360px;
	padding-right: 10px;
}
.dialogSettings .floatRight span { width: 225px }
.dialogSettings .floatRight { margin-right: 20px }
.dialogSettings select { min-width: 160px }

#dialogEdit .spacer { height: 30px }
#checkCompanyById,
#checkEmailExist,
#insertEIK {
	cursor: pointer;
	font-size: 11px;
	display: inline-block;
	color: #535353;
	padding: 0 10px;
	margin: 0;
	
	margin-left: 5px;
	line-height: 18px;
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	background-color: #EEE;
	
	-webkit-box-shadow: inset 0px 5px 15px #FFF;
	-moz-box-shadow: inset 0px 5px 15px #FFF;
	-o-box-shadow: inset 0px 5px 15px #FFF;
	box-shadow: inset 0px 5px 15px #FFF;
	
	border: 1px solid #D4D4D4;
	vertical-align: top;
	
	/*line-height: 22px;*/
}
#resultCompanyById,
#resultEmailExist {
	display: inline-block;
	vertical-align: top;
	/* margin-left: 10px; */
	background-color: #E9E9E9;
	/* line-height: 20px; */
	padding: 0 10px;
	width: 230px;
	
	margin-left: 5px;
	line-height: 24px;
}

/* Statistics */
.chooseDateRange {
	text-align: right;
}
.searchCompany { text-align: left; }
.chooseDateRange input,
.searchCompany input { 
	width: 80px;
	margin: 0 5px;
}
.recDailyTable a,
.recWeeklyTable a { color: #595959; cursor: pointer }
.recDailyTable a:hover,
.recWeeklyTable a:hover { color: #009ce3; }

.statistic { 
	position: relative;
	min-height: 175px;
}
.statistic .dataTables_wrapper { margin: 0 }
.statistic h3 {
	margin: 2em 0;
	font-size: 1.5em;
	line-height: 1em;
}

.searchCompany { float: left; }
.searchCompany select {
	margin-right: 15px;
}
.searchCompany #name {
	width: 300px;
	margin-right: 15px;
}
.statistic .companyTitle {
	margin: 0 0 10px;
	font-size: 25px;
}
.statistic .result {
	margin: 30px 0 0;
}
.statistic .result a,
.statistic .result .edit.button:hover {
	color: #595959;
	cursor: pointer;
}
.statistic .result a:hover { color: #009CE3 }
.statistic .totalNum {
	float: right;
	font-size: 15px;
	padding-right: 20px;
}

.mediaVisits input {
	width: initial;
	width: 95%;
}
.mediaVisits thead td {
	background-color: #DFDFDF;
}
.mediaVisits a { color: #DF0C0C; }
.mediaVisits a.nopointer { cursor: initial; }

/* UI TOOLTIP */
body .ui-tooltip {
	background-color: #F9EDBE;
	border: 1px solid #F0C36D;
}

/* INVOICE */
#invoice {
	border-top: 1px solid #F0C36D;
	border-bottom: 1px solid #F0C36D;
	position: relative;
	display: none;
	margin: 10px 0;
	padding: 10px 0;
}

/* RESEND */
#resendActivationMail {
	float: right;
	font-size: 1em;
	line-height: 10px;
	color: #FF1F00;
	font-weight: normal;
}






