/* Artfully masterminded by ZURB */
body {
  position: relative;
}

#joyRideTipContent { display: none; }

.joyRideTipContent { display: none; }

/* Default styles for the container */
.joyride-tip-guide {
  position: absolute;
  background: #000;
  background: rgba(0,0,0,0.8);
  display: none;
  color: #fff;
  width: 420px;
  z-index: 101;
  top: 0; /* keeps the page from scrolling when calculating position */
  left: 0;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", Helvetica, Arial, Lucida, sans-serif;
  font-weight: normal;
     -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.joyride-content-wrapper {
  padding: 10px 10px 15px 15px;
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .joyride-tip-guide {
    width: 95% !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    left: 2.5% !important;
  }
  .joyride-tip-guide-wrapper {
    width: 100%;
  }
}


/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
.joyride-tip-guide span.joyride-nub {
  display: block;
  position: absolute;
  left: 22px;
  width: 0;
  height: 0;
  border: solid 14px;
  border: solid 14px;
}

.joyride-tip-guide span.joyride-nub.top {
  /*
  IE7/IE8 Don't support rgba so we set the fallback
  border color here. However, IE7/IE8 are also buggy
  in that the fallback color doesn't work for
  border-bottom-color so here we set the border-color
  and override the top,left,right colors below.
  */
  border-color: #000;
  border-color: rgba(0,0,0,0.8);
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-width: 0;
  top: -14px;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.bottom {
  /*
  IE7/IE8 Don't support rgba so we set the fallback
  border color here. However, IE7/IE8 are also buggy
  in that the fallback color doesn't work for
  border-top-color so here we set the border-color
  and override the bottom,left,right colors below.
  */
  border-color: #000;
  border-color: rgba(0,0,0,0.8) !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-width: 0;
  bottom: -14px;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.right {
  border-color: #000;
  border-color: rgba(0,0,0,0.8) !important;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  border-right-width: 0;
  top: 22px;
  bottom: none;
  left: auto;
  right: -14px;
}

.joyride-tip-guide span.joyride-nub.left {
  border-color: #000;
  border-color: rgba(0,0,0,0.8) !important;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-bottom-color: transparent !important;
  border-left-width: 0;
  top: 22px;
  left: -14px;
  right: auto;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.top-right {
  border-color: #000;
  border-color: rgba(0,0,0,0.8);
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-width: 0;
  top: -14px;
  bottom: none;
  left: auto;
  right: 28px;
}

/* Typography */
.joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6 {
  line-height: 1.25;
  margin: 0;
  font-weight: bold;
  color: #fff;
}
.joyride-tip-guide h1 { font-size: 30px; }
.joyride-tip-guide h2 { font-size: 26px; }
.joyride-tip-guide h3 { font-size: 22px; }
.joyride-tip-guide h4 { font-size: 18px; }
.joyride-tip-guide h5 { font-size: 16px; }
.joyride-tip-guide h6 { font-size: 14px; }
.joyride-tip-guide p {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 18px;
}
.joyride-tip-guide a {
  color: rgb(255,255,255);
  text-decoration: none;
  border-bottom: dotted 1px rgba(255,255,255,0.6);
}

.joyride-tip-guide a:hover {
  color: rgba(255,255,255,0.8);
  border-bottom: none;
}


/* Button Style */
.joyride-tip-guide .joyride-next-tip {
  width: auto;
  padding: 6px 18px 4px;
  font-size: 13px;
  text-decoration: none;
  color: rgb(255,255,255);
  border: solid 1px rgb(0,60,180);
  background: rgb(0,99,255);
  background: -moz-linear-gradient(top, rgb(0,99,255) 0%, rgb(0,85,214) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(0,99,255)), color-stop(100%,rgb(0,85,214)));
  background: -webkit-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  background: -o-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  background: -ms-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0063ff', endColorstr='#0055d6',GradientType=0 );
  background: linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
     -moz-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
          box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
}
/*
.joyride-next-tip:hover {
  color: rgb(255,255,255) !important;
  border: solid 1px rgb(0,60,180) !important;
  background: rgb(43,128,255);
  background: -moz-linear-gradient(top, rgb(43,128,255) 0%, rgb(29,102,211) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(43,128,255)), color-stop(100%,rgb(29,102,211)));
  background: -webkit-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  background: -o-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  background: -ms-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b80ff', endColorstr='#1d66d3',GradientType=0 );
  background: linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
}
*/

.joyride-timer-indicator-wrap {
  width: 50px;
  height: 3px;
  border: solid 1px rgba(255,255,255,0.1);
  position: absolute;
  right: 17px;
  bottom: 16px;
}
.joyride-timer-indicator {
  display: block;
  width: 0;
  height: inherit;
  background: rgba(255,255,255,0.25);
}

.joyride-close-tip {
  position: absolute;
  right: 10px;
  top: 10px;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-bottom: none !important;
}

.joyride-close-tip:hover {
  color: rgba(255,255,255,0.9) !important;
}

.joyride-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgb(0,0,0);
  background: transparent;
  background: rgba(0,0,0, 0.5);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
  cursor: pointer;
}

.joyride-expose-wrapper {
    background-color: #ffffff;
    position: absolute;
    z-index: 102;
    -moz-box-shadow: 0px 0px 30px #ffffff;
    -webkit-box-shadow: 0px 0px 30px #ffffff;
    box-shadow: 0px 0px 30px #ffffff;
}

.joyride-expose-cover {
    background: transparent;
    position: absolute;
    z-index: 10000;
    top: 0px;
    left: 0px;
}

/*! jQuery UI - v1.10.3 - 2013-05-03
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
	padding-left: .7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 21px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	margin-top: -3px;
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
	/* support: IE10, see #8844 */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}

.ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	position: static;
	float: right;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("images/animated-overlay.gif");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertical centre icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #212121;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-state-default .ui-icon {
	background-image: url(images/ui-icons_888888_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.ui-state-active .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.ui-state-highlight .ui-icon {
	background-image: url(images/ui-icons_2e83ff_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(images/ui-icons_cd0a0a_256x240.png);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
	border-radius: 8px;
}

@CHARSET "UTF-8";

/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 65px; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }

/* bootstrap changes */
body {
	padding-top: 60px;
	padding-bottom: 0px;
	font-size: 12px;
	background-image: url(../img/body-bg.png);
}

.btn-group > .btn, .btn-group > .dropdown-menu {
    font-size: 12px;
	cursor: default;
}

.btn {
	font-size: 12px;
}

.btn-group > .btn-large {
    font-size: 15px;
}

li input[type="checkbox"],
.btn-group input[type="checkbox"],
.btn-group input[type="file"]
{
	margin-top:-3px;
}

.navbar-inner {
	background-color: #4586CE;
	background-image: -moz-linear-gradient(to top, #72B3FB, #4484CC);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#72B3FB), to(#4484CC));
	background-image: -webkit-linear-gradient(top, #72B3FB, #4484CC);
	background-image: -o-linear-gradient(top, #72B3FB, #4484CC);
	background-image: linear-gradient(to bottom, #72B3FB, #4484CC);
	background-repeat: repeat-x;
    border-radius: 4px 4px 4px 4px;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#72B3FB', endColorstr='#4484CC', GradientType=0);
}

/* ACE ADMIN THEME BRANDING USED
.navbar .brand {
	color: #FFFFFF;
	text-shadow: none;
	font-size: 14px;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:0;
	padding-right:15px;
} */

.navbar .nav > li > a {
	color: #FFFFFF;
	text-shadow: none;
	padding: 10px 5px;
}


.navbar .nav > li > a:focus , .navbar .nav > li > a:hover {
    color: #E7E7E7;
}

.navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
    background-color: transparent;
    color: #E7E7E7;
}

.navbar .nav li.dropdown > .dropdown-toggle .caret {
    border-bottom-color: #FFFFFF;
    border-top-color: #FFFFFF;
}

.navbar .nav li.dropdown.open > .dropdown-toggle .caret, .navbar .nav li.dropdown.active > .dropdown-toggle .caret, .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
    border-bottom-color: #FFFFFF;
    border-top-color: #FFFFFF;
}

.sidebar-nav .well {
	padding-left: 0px;
	padding-right: 0px;
}

.nav-list > li > a {
    padding: 3px 5px;
}

.nav-list > li.nav-header {
	padding: 3px 5px;
}

.icon-gray{background-image:url("../img/glyphicons-halflings-gray.png");}
.icon-red{background-image:url("../img/glyphicons-halflings-red.png");}
.icon-green{background-image:url("../img/glyphicons-halflings-green.png");}

.nav-closed li.nav-header {
	display:block;
}

.nav-closed li {
	display:none;
}

.btn-group input[type="text"] {
    margin-bottom: 0;
}

.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
	z-index:0;
}

.nav > li > span {
    display: block;
}

.nav-tabs > li > span {
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    line-height: 20px;
    padding-bottom: 8px;
    padding-top: 8px;
}
/*
.table th {
	background-color: white;
}*/

.table-striped tbody tr:nth-child(2n) td, .table-striped tbody tr:nth-child(2n) th {
    background-color: white;
}

.pagination a, .pagination span {
    background-color: white;
}

.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
	background-color: white;
}

.pagination {
	margin: 0;
}

.pagecontainer {
	border-radius: 0 0 5px 5px;
	background-image: url(../img/bg-transparent.png);
	padding:10px;
	margin-top: -20px;
}

/* time picker fixes */
.ui-datepicker {
	line-height: 16px;
}

.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
	line-height: 10px;
}

.modal .modal-body {
    max-height: 500px;
    overflow-y: auto;
    width: 670px !important;
}

.modal.fade.in {
    /*top: 40%;*/
}

.bhicon-online {
  width:14px;
  height:14px;
  background-image: url("../img/online.png");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  line-height: 14px;
  margin-top: 1px;
  vertical-align: text-top;
  background-position:center;
  background-repeat: no-repeat;
}

.bhicon-offline {
  width:14px;
  height:14px;
  background-image: url("../img/offline.png");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  line-height: 14px;
  margin-top: 1px;
  vertical-align: text-top;
  background-position:center;
  background-repeat: no-repeat;
}

/* custom */

ul.sourceslist li img {
	width: 16px;
	height: 16px;
	margin-left: 5px;
	margin-right: 5px;
}

ul.filterlist li input[type="checkbox"] {
	margin-right: 5px;
}

table.inboxmessages td.selectbox {
	width: 20px;
	vertical-align: middle;
	text-align: center;
	border-right:none;
}

table.inboxmessages td.icons {
	width:75px;
	vertical-align: middle;
	text-align: center;
	border-right:none;
	border-left:none;
}

table.inboxmessages td.iconsFirst {
	width:75px;
	vertical-align: middle;
	text-align: center;
	border-right:none;
}

table.inboxmessages td.providericon {
	width: 20px;
	vertical-align: middle;
	text-align: center;
	border-right:none;
}

table.inboxmessages img.providerlogo , span img.providerlogo{
	width:16px;
	height:16px;
}

table.inboxmessages img.userimage {
	width:35px;
	height:35px;
}

table.inboxmessages td.icons img {
	padding: 3px;
}

table.inboxmessages td.subicons {
	width: 60px;
	vertical-align: middle;
	text-align: center;
	border-right:none;
	border-left:none;
}

table.inboxmessages td.subicons img {
	padding: 3px;
}

table.inboxmessages td.messagetext {
	border-left:none;
}

table.inboxmessages td.messagetext div.messageheader {
	margin-bottom:2px;
}

table.inboxmessages td.messagetext div.messageheader .subject {
	font-weight: bold;
}

table.inboxmessages td.messagetext div.messagefooter {
	margin-top:2px;
	height: 30px;
	line-height: 30px;
}

table.inboxmessages td.messagetext span.poster {
	font-size: 11px;
	color:#5d5d5d;
	}

table.inboxmessages td.messagetext span.postedon, span.postedon {
	color:#9D9D9D;
	margin-right: 20px;
}

table.inboxmessages td.messagetext span.source {
	color:#9D9D9D;
}

table.inboxmessages td.messagetext span.additionalinfo {
	margin-left:10px;
	color:#558ED5;
}

table.inboxmessages td.messagetext span.assignedBy {
	color:#9D9D9D;
}

table.inboxmessages td.messagetext span.assignedToUser {
	color:#9D9D9D;
}

table.inboxmessages td.messagetext span.assignedToGroup {
	color:#9D9D9D;
}

table.inboxmessages td.messagetext span.createdOn {
	color:#9D9D9D;
}

table.inboxmessages td.messagetext span.postedBy {
	color:#9D9D9D;
	font-size: 11px;
}

table.inboxmessages td.messagetext span.prepearedBy {
	color:#9D9D9D;
	font-size: 11px;
}

table.inboxmessages td.ticketDate {
	border-left:none;
	width:140px;
	vertical-align:middle;
	text-align: center;
}

table.inboxmessages td.ticketDatePlaneedPost {
	vertical-align: middle;
	text-align: center;
}

div.selectcompanydiv {
	float:left;
	margin-right: 10px;
	margin-bottom: 10px;
	width: 200px;
	height: 70px;
	cursor: pointer;
}

div.selectcompanydiv:hover {
	background-color: #DCDCDC;
}

div.selectcompanydiv img {
	height:70px;
	margin-right: 10px;
}

ul.nav li i {
	margin-right: 3px;
}

div.dialogContent {
	margin:10px;
}

div.dialogContentHtml {
	margin:10px;
}

div.messageBox textarea {
	width:98%;
	height:60px;
}

div.messageBox div#replyToTicket textarea.boxsizingBorder {
    margin-top:5px; 
    width:90%;    
}

div.messageBox div#replyToTicket span.countdown {        
    width: 40px; 
    float: right; 
    margin-top: 45px; 
    font-size: 25px; 
    margin-right: 20px; 
    color: #ddd;
}

div.messageBox div.editorButtonBar {
    margin-bottom: 10px;
}

.smallDateInput input  {
	width: 115px;;
}

div.actionButtons i {
	margin-right:3px;
}

div.selectSources img {
	width:16px;
	height:16px;
	margin-right: 5px;
}

table.messages td.icons {
	width:65px;
}

table.messages td.icons img.providericon {
	margin-right:3px;
	width:16px;
	height:16px;
}

table.messages td.icons img {
	width:35px;
	height:35px;
}

table.messages td.messagetext span.poster {
	font-weight:bold;
}

table.messages td.messagetext span.postedon {
	color:#9D9D9D;

}

table.messages td.messagetext div.content {
	width:100%;
	max-height:500px;
	overflow:auto;
}

table.messages td.messagetext div.longContent {
	width:100%;
	overflow:auto;
}

table.messages td.messagetext span.source {
	color:#9D9D9D;
}

table.messages td.messagetext span.additionalinfo {
	margin-left:10px;
	color:#558ED5;
}

div.ticketPriority {
	display:inline-block;
	height:30px;
	line-height:30px;
}

div.assignTo {
	display:inline-block;
	height:30px;
	line-height:30px;
}

div.ticketHistory table {
	width:520px;
}

div.ticketHistory table tr.header td {
	font-weight: bold;
}

.errorArea {
	border:solid 1px #eed3d7;
	background-color:#f2dede;
	-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;
}

div.dashboradGraph {
	display: inline-block;
	width:465px;
	height: 300px;
	margin-left: 10px;
	margin-bottom: 10px;
}

div.colorPreview {
	display: inline-block;
	width: 40px;
	height: 16px;
}

span.companyUser {
	color:#0088cc;
	cursor: pointer;
}

span.companyUser:hover {
	color:#005580;
	text-decoration:underline;
}

/*
.table th, .table td {
	padding: 8px 1px;
}
*/
/*
.table th, .table td {
	padding: 8px;
}
*/
.table th, .table td {
	padding: 2px 8px;
}

.ticketNumber {
	color:#0088CC;
}

.newMessagesForSource {
	color:#0088CC;
	font-size:14px;
}

.costumerProfileDataTitle {
	color:#9D9D9D;
	font-weight: bold;
}

.activeText {
	color:#37A500;
}

.inactiveText {
	color:#A50000;
}

.footer-gray {
	color:#A6A6A6;
}

.footer-gray a {
	color:#3A3AFF;
}

.pointer {
	cursor:pointer;
}

.searchMarkedText {
	background-color:#FFF525;
}

.messageLabels {
	display:inline-block;
	height: 15px;
}

.messageLabelBtnGrp {
	display:inline-block;
	float:left;
	margin-left:5px;
}

.messageLabelBtnGrp .messageLabelDropdownBtn {
	height:22px;
}

.messageLabelBtnGrp .messageLabelDropdownBtn i {
	margin-top:-1px;
}

#leftMenuCustomOptions li.active a {
	background-color:#76B8F1;
	color:#00527C;
}

.createCampaign .fieldName {
	color:#558ED5;
}

.createCampaign label {
	display:inline-block;
	vertical-align: middle;
	margin-left: 3px;
	margin-right: 3px;
}

.createCampaign .dateSelection label {
	height: 30px;
	line-height: 30px;
}

.createCampaign .dateSelection .btn-group {
	display:inline-block;
	top:-5px;
}

.createCampaign table.fieldList td .btn-group {
	top:-5px;
}

#promotialCodesAutoGenerationOptions label {
	width: 140px;
}

li label {
	display:inline;
}

.campignTypeBlock {
	display: table-cell;
	height: 100px;
	width: 140px;
	margin-left: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
}

ul.sourceCheckboxList {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.sourceFilterList {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.buttonList li {
	padding-bottom:5px;
}

ul.buttonList li span {
	margin-left:5px;
	width:120px;
}

.indexWidget {
	display:inline-flex;
	width: 560px;
	height:360px;
	/*margin-right: 10px;*/
}

.indexWidgetNoMargin {
	display:inline-flex;
	width: 560px;
	height:360px;
}

.reportingWidget {
	display:inline-flex;
	width: 456px;
	height:360px;
	margin-right: 10px;
}

.widget-content {
	float:left;
	width:100%;
}

.pageWidgetStyle {
	width:100%;
}

.pageWidgetStyle .btn-group {
	float:left;
	margin-top:-19px;
	margin-right:-4px;
}

.pageWidgetStyle .btn-group .widget-config {
	width:72px;
	height:20px;
}
.widgetChart {
	width:100%;
	margin-top: 10px;
	height:340px;
}

.infoBar {
	display: block;
	font-size: 0;
	white-space: nowrap;
}

.infoBar .item {
	display: inline-block;
	background-color: #F5F5F5;
	border-top: 1px solid #E3E3E3;
	border-bottom: 1px solid #E3E3E3;
	border-left: 1px solid #E3E3E3;
}

.infoBar .item:first-child {
	border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.infoBar .item:last-child {
	border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border-right: 1px solid #E3E3E3;
}

.infoBar .data {
	display:block;
	font-weight: bold;
	font-size: 26px;
	line-height: 26px;
	padding: 5px;
	color:black;
}

.infoBar .name {
	display:block;
	font-size: 12px;
	line-height: 12px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	color:#A49C9B;
}

.infoBar a:hover, .infoBar .link {
	color:#608CC1;
	text-decoration: none !important;
}

.loginBox {
	position: relative;
	display: block;
	min-width: 1000px;
	min-height: 520px;
}

.loginBox .socialLoginData {

	margin-left:5px;
	border-radius: 5px;
	color: black;
    width:50px; /*change as per requirement*/


}
.loginBox .loginData {
	position: absolute;
	top:30px;
	left:150px;
	background-image: url(../img/bg-transparent.png);
	border-radius: 5px;
	color: black;
	width: 300px;
	padding-bottom: 20px;
}

.loginBox .loginData .loginlogo {
	height: 70px;
	text-align: center;
	padding-top: 20px;
}

.loginBox .loginData .welcome {
	margin: 10px;
	text-align: center;
	border-bottom: solid 1px #cccccc;
}

.loginBox .loginData .entertext {
	margin: 10px;
	text-align: center;
}

.loginBox .loginData .field {
	margin: 10px;
}

.loginBox .loginData .field input[type=text],
.loginBox .loginData .field input[type=password] {
	width:235px;
}

.loginbutton {
	margin: 10px;
	border-top: solid 1px #cccccc;
}

.loginBox .infotext {
	position: absolute;
	top:60px;
	left:600px;
	background-image: url(../img/lea.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	width: 591px;
	height: 460px;
}

.loginBox .infotext .bubble {
	position: absolute;
	top:0;
	left:0;
	background-image: url(../img/msg_box.png);
	background-repeat:no-repeat;
	background-size:273px 150px;
	color: black;
	padding: 10px;
	width: 260px;
	height:140px;
	font-size: 18px;
	z-index:8;
}

.loginBox .getdemobutton {
	position: absolute;
	top:200px;
	left:650px;
	z-index:10;
}

.leftMenuCompany {
	font-weight:bold;
	font-size:16px;
	line-height:30px;
	text-align: center;
}

.leftMenuCompany img {
	width:40px;
	height:40px;
}

.topbackground {
	position:absolute;
	top:40px;
	left:0;
	background-image: url(../img/body-top-bg.png);
	background-repeat: repeat-x;
	z-index: -1;
	height: 311px;
	width:100%;
}

.answerReport {
	margin-top:10px;
}

table.itemlist td,table.itemlist th {
	vertical-align: middle;
	padding-left: 5px;
	padding-right: 5px;
}

table#ticketListTable td:last-child {
     white-space: nowrap;
}

.nav-list li.active > a:after {
	border-style: none;
}

.boxsizingBorder {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.dataTables_info{
	margin:5px 0 0 12px;
	font-size:11px
}

.maxPostDate{
	line-height: 30px;
}

.message-closed-dismissed{
	background-color: #F8F6F6 !important;
}


.calendar .deleyedError { background-color: #FF695C !important}
.calendar .canceledExpires { background-color: #DBDBDB !important }
.calendar .planned { background-color: #BBE9FF !important }
.calendar .needVerification { background-color: #FFE167 !important }
.calendar .posted { background-color: #C3E7B4 !important }

.calendar .new { background-color: #D15B47 !important;}
.calendar .assigned { background-color: #F89406 !important;}
.calendar .closed { background-color: #82AF6F !important;}
.calendar .dismissed { background-color: #B4B1B1 !important;}
.calendar .own { background-color: #3A87AD !important;}
.calendar .deleted {background-color: rgb(190, 190, 190) !important;}
.calendar .textColor{color: white;}
.calendar .draft { background-color: #e8b110!important; }
.calendar .remote { background-color: #B4B1B1 !important;}
.calendar .verified { background-color: #78C956 !important;}

span.label.right-inline {
	padding: 1px 4px !important;
	background-color: #e7e7e7 !important;
	color: #888 !important;
}

.messages_planned { background-color: #82AF6F !important;}
.messages_draft { background-color: #FFE167 !important;}
.messages_posted { background-color: #3A87AD !important;}
.messages_delayed { background-color: #E8B110 !important;}
.messages_canceled { background-color: #B4B1B1 !important;}
.messages_error { background-color: #D15B47 !important;}
.messages_expired {background-color: #B4B1B1 !important;}

.very-light{
	color: #B4B1B1;
}

.coverImageListImg{
    width:100%;
    max-height:100px;
    max-width:200px;
}

.message_border_left{
	border-left:2px solid !important;
	padding-left: 10px;
}

.message_status_NEW{
	border-color: #D15B47 !important;
}
.message_status_ASSIGNED{
	border-color: #F89406 !important;
}
.message_status_CLOSED{
	border-color: #82AF6F !important;
}
.message_status_DISMISSED{
	border-color: #B4B1B1 !important;
}
.message_status_DELETED{
	border-color: rgb(190, 190, 190) !important;
}
.message_status_OWN{
	border-color: #3A87AD !important;
}

.ticket_state_NEW{
	border-left-color: #D15B47 !important;
}
.ticket_state_ASSIGNED{
	border-left-color: #F89406 !important;
}
.ticket_state_CLOSED{
	border-left-color: #82AF6F !important;
}
.ticket_state_DRAFT{
	border-left-color: #e8b110 !important;
}
.ticket_state_REMOTE{
	border-left-color: #B4B1B1 !important;
}
.ticket_state_VERIFIED{
	border-left-color: #78C956 !important;
}

.ticketstate-new{
	background-color: #D15B47 !important;
}
.ticketstate-assigned{
	background-color: #F89406 !important;
}
.ticketstate-closed{
	background-color: #82AF6F !important;
}
.ticketstate-draft{
	background-color: #e8b110 !important;
}
.ticketstate-remote{
	background-color: #B4B1B1 !important;
}
.ticketstate-verified{
	background-color: #78C956 !important;
}

.plannedPost_status_PENDING{
	border-color: #82AF6F !important;
}
.plannedPost_status_NEEDVERIFICATION{
	border-color: #FFE167 !important;
}
.plannedPost_status_POSTED{
	border-color: #3A87AD !important;
}
.plannedPost_status_DELAYED{
	border-color: #E8B110 !important;
}
.plannedPost_status_ERROR{
	border-color: #D15B47 !important;
}
.plannedPost_status_CANCELED{
	border-color: #B4B1B1 !important;
}
.plannedPost_status_EXPIRED{
	border-color: #B4B1B1 !important;
}

.plannedPost_status_background_PENDING{
	background-color: #82AF6F !important;
}
.plannedPost_status_background_NEEDVERIFICATION{
	background-color: #FFE167 !important;
}
.plannedPost_status_background_POSTED{
	background-color: #3A87AD !important;
}
.plannedPost_status_background_DELAYED{
	background-color: #E8B110 !important;
}
.plannedPost_status_background_ERROR{
	background-color: #D15B47 !important;
}
.plannedPost_status_background_CANCELED{
	background-color: #B4B1B1 !important;
}
.plannedPost_status_background_EXPIRED{
	background-color: #B4B1B1 !important;
}
.plannedPost_status_cross
{
	 text-decoration: line-through;
}
.plannedPost_status_text_size {
	font-size: 1.2em;
}

.like_icon{
	float: left;
	background-size: 100px 100px;
	height: 100px; width: 100px;
	border: 1px solid grey;
	border-radius: 5px;
	margin: 15px 15px 0 0;
}

.replyMessageFooter{
	float: right;
	padding-top:10px;
}

.replyMessageFooter .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.replyMessageFooter .dropdown-toggle {
    margin-left: -5px !important;
}

.modal{
	position: absolute;
	width: 670px;
}

.errorMsg{
	color: #D16E6C;
	display: inline-block;
	padding-left: 10px;
}

body{
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif !important;
}

.redText{
	color: red !important;
}

.twitterUsername{
	font-size: 11px;
}

.replyToMessage img.providericon {
	margin-right:3px;
	margin-left:3px;
	width:16px;
	height:16px;
}

div.coreMessageText div.attachments,
div.coreMessageText div.inlineAttachments {
    padding-bottom: 5px;
    border-bottom: 1px solid #e4e6e9;    
    margin-top: 5px;
    line-height: 23px;
}  

div.coreMessageText div.attachments a,
div.coreMessageText div.inlineAttachments a {
    background: #e7e7e7;
    padding: 2px;
    border: 1px #d9d9d9 solid;    
}

div.coreMessageText div.inlineAttachments a {    
    border-bottom: 1px #d9d9d9 solid;        
    border-left: 1px #d9d9d9 solid;        
}

div.coreMessageText div.inlineAttachments a.pointer {
    margin-left: -5px;
    border-left-width: 0px;
    border-right: 1px #d9d9d9 solid;            
    text-decoration: none;
}

div.coreMessageText div.inlineAttachments i.promote {
    color: #08c; 
    margin-left: 3px;
} 

div.coreMessageText div.inlineAttachments i.promote:hover {
    color: #005580;   
}


div.text div.socialAttachments {
     border: 1px #d9d9d9 solid;
     background: #e7e7e7;
     display:inline-block;
     padding: 2px;
}

div.text div.socialAttachments a {
    height:inherit;
}

div.text div.socialAttachments a.pointer {
      height:inherit;
      margin-right:1px;
}

div.text div.socialAttachments i.promoteMediaLink {
    color: #08c;
}

div.text div.socialAttachments i.promoteMediaLink:hover {
    color: #005580;
}

/* ------------------------------------------ NAVBAR ------------------------------------  */
.navbar .navbar-inner {
background: #333333;
}

.ace-nav>li>a>[class*="icon-"] {
color: #fff;
font-size: 30px;
width: 30px;
}

.ace-nav>li {
border-left: 0;
min-width: 80px;

}
.navbar .nav > li > a:focus , .navbar .nav > li > a:hover {
    color: #fff;
    background: #55aaff;
}

.ace-nav>li.green {
background: #9bbd32;
}
.navbar .nav.ace-nav > li.green > a:hover {
background: #abcd42;
}
.ace-nav>li.purple {
background: #Ff9900;
}
.navbar .nav.ace-nav > li.purple > a:hover {
background: #Ffaa11;
}

.ace-nav>li.light-blue {
background: #3399ff;
}

.ace-nav>li.dark-gray {
background: #333333;
}

.navbar .nav.ace-nav > li.dark-gray > a:hover {
background: #3399ff;
}

.ace-nav>li.dark-gray>a>[class*="icon-"] { color: #efefef; }

.ace-nav>li.dark-blue {
	background: #2283c5;
}

.navbar .nav.ace-nav > li.dark-blue > a:hover {
background: #045e9f;
}

.navbar .nav > li.dark-blue > a:focus, .navbar .nav > li.dark-blue > a:hover {
	background: #045e9f;
}

.navbar .nav.ace-nav > li.companySelectMenuItem > a:focus, .navbar .nav.ace-nav > li.companySelectMenuItem > a:hover {
color: #fff;
background: #3399ff;
}

.navbar .nav.ace-nav > li.companySelectMenuItem > a:hover .nav-user-photo {
border-color: #fff;
}



.ace-nav>li.companySelectMenuItem .dropdown-menu>li>a {
background: #fff;
color: #111;
}

.ace-nav>li.companySelectMenuItem .dropdown-menu>li>a:hover {
background: #3399ff;
color: #fff;
}

.nav-list>li .submenu>li a>[class*="icon-"]:first-child {
background: transparent;
}
.nav-list>li .submenu>li.active>a>[class*="icon-"]:first-child {
color: #fff;
}

.badge {
padding: 2px!important;
line-height: 20px;
min-width:19px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
text-align:center;
background: none !important;
border: 1px solid #fff;

}

.label-info.arrowed:before {
border-right-color: #fff;
}
.label-info, .badge-info {
 background-color: #fff !important;
 color: #3399ff;
}

.btn-info {
background-color:#3399ff !important;
color: #fff;
border-color: #3399ff;
}
.btn-info:hover {
background-color: #55aaff !important;
border-color: #55aaff;
}
.btn-light {
background-color: #e7e7e7!important;
border-color: #e7e7e7;
color: #888!important;
text-shadow: 0 -1px 0 rgba(250,250,250,0.25)!important;

}



.dropdown-navbar [class*="btn"][class*="icon-"]:hover {
background-color:#3399ff !important;
color: #fff;
}


.dropdown-navbar>li>a .badge {
color: #3399ff;
border-color: #3399ff;
}

.dropdown-menu li a:hover {
background: #3399ff;
}




/* ------------------------------------------ NAVBAR END ------------------------------------
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
*/

body {
padding-top: 45px;
}

.sidebar {
	width: 210px;
	position: absolute;
	top: 45px;
	bottom: 0;
	border-right: 0px solid #333;
	background-color: #333;
}
.sidebar:before {
border-right: none;
}
.nav-list {
background: #333;
}
.nav-list .divider {
border-bottom: 1px solid #555;
background: #555;
}
.nav-list>li .submenu {
background-color: #333;
border-top: 1px solid #444;
}
.nav-list>li.open {
border-bottom-color: #000;
}
.menu-min .nav-list>li.open>a {
	background: #fff;
}
.menu-min .nav-list>li>a:hover {
	color: #fff;
}
.menu-min .nav-list>li>a>.menu-text {
	background: #333;
}

.nav-list>li {
border-top: 1px solid #333;
border-bottom: 1px solid #333;
position: relative;
}
.nav-list>li.open>a {
background-color: #333333;
color: #ccc;
}
.nav-list>li.open>a:hover {
background-color: #444;
color: #ccc;
}

.nav-list>li a:hover>.arrow, .nav-list>li.active>a>.arrow, .nav-list>li.open>a>.arrow {
color: #ccc;
}

.nav-list>li>.submenu:before {
border-left: none;
}
.nav-list>li>.submenu>li:before {
content: "";
display: inline-block;
position: absolute;
width: 8px;
left: 18px;
top: 17px;
border-top: 0px solid #fff;
}
.nav-list>li>.submenu>li:first-child>a {
border-top: 0px solid #444;
}
.nav-list>li .submenu>li.active>a {
color: #fff;
background: #000;
}

.nav-list>li>a {
display: block;
height: 38px;
line-height: 36px;
padding: 0 16px 0 7px;
background-color: #333;
color: #ccc;
text-shadow: none!important;
font-size: 13px;
text-decoration: none !important;
}
.nav-list>li>a:hover {
background: #3399ff;
color: #fff;
}
.nav-list>li a>.arrow {
color: #ccc;
}
.nav-list>li a:hover >.arrow {
color: #fff;
}
.nav-list>li .submenu>li>a {
display: block;
position: relative;
color: #616161;
padding: 7px 0 8px 37px;
margin: 0;
border-top: 1px dotted #555;
}
.nav-list>li .submenu>li>a:hover {
color: #fff;
background: #3399ff;
}
.nav-list>li>.submenu li>.submenu li.active>a {
color: #fff;
}
.nav-list>li>.submenu li>.submenu li.active>a>[class*="icon-"]:first-child {
display: inline-block;
color: #fff;
}
.nav-list>li>.submenu li.open>a {
color: #3399ff;
}
.sidebar-collapse {
border-bottom: 0px solid #555;
background-color: #333;
text-align: center;
padding: 5px 0;
position: relative;
}
.sidebar-collapse:hover {
background: #3399ff;
color: #fff;
}
.sidebar-collapse:hover [class*="icon-"] {
background: #3399ff;
color: #fff !important;
}
.sidebar-collapse>[class*="icon-"] {
display: inline-block;
cursor: pointer;
font-size: 14px;
color: #ccc;
border: 1px solid #fff;
padding: 0 5px;
line-height: 18px;
border-radius: 16px;
background-color: #333;;
position: relative;
}
.menu-min .sidebar-collapse>[class*="icon-"] {
border-color: #fff;
}











.page-content {
background: #fff;
margin: 0;
padding: 0px 20px 5px;
height: 100%;
}




/* ------------------------------------------ WIDGET ------------------------------------
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
*/


.widget-box {
	margin-top: 0;
	border-color: #3399ff;
}

.widget-header-flat {
background: #3399ff;
color: #fff;
}
.widget-header-flat h5 {
font-size: 12px;
}
.widget-header {
border:none;
}

.widget-body {
	border: none;
	border-top: 0;
	background-color: #fff;
	border-left: 1px solid #3399ff;
	border-right: 1px solid #3399ff;
	border-color: #3399FF;
	border-style: none solid none solid;
    border-width: 0px 1px 1px 1px;
}
.widget-toolbar:before {
border: none;
}
.widget-toolbar>a {
color: #fff;
}
.widget-toolbar>[data-action="close"], .header-color-dark>.widget-toolbar>[data-action="close"] {
color: #Ff9900;
}
.widget-toolbar>[data-action="collapse"], .header-color-dark>.widget-toolbar>[data-action="collapse"] {
color: #fff;
}

div.widget-body div.ticketDataContent {    
    overflow: visible;
    z-index: auto;    
}

div.widget-body div.ticketDataContent div.alertMessage {
    margin-bottom: 5px;    
}

div.widget-body div.ticketDataContent button.dropdown-toggle {
    padding: 1px 5px 3px;
    font-size: 11px;
    border: 0px;
    line-height: 14px;    
}

div.widget-body div.ticketDataContent span.caret {
    margin-top: 6px !important;
}

div.widget-header-ticket-message {
    margin-left: 50px;
}

div.widget-header-ticket-message:before {
    content: "";
    display: block;
    position: absolute;
    left: -5px;
    top: 11px;
    width: 8px;
    height: 8px;
    border: 2px solid #3399ff;
    border-width: 2px 0 0 2px;
    background-color: #3399ff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);    
}

/* ------------------------------------------ TESTING ------------------------------------
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////
*/

#socialInbox h3.header.smaller.lighter.blue {
	display:none;
}

.sidebar .well {
    background-color: #333333;
    border: 0 none;
    margin-bottom: 0;
}

.sidebar-nav .well {
    margin-bottom: 0px;
    border: 0px;
    background-color: #333;
}

.leftMenuCompany {
    background-color: #FAFAFA !important;
}

.nav-list > li.active:after {
    border-right: 0px;
    right: -2px;
}

.nav-list > li.active > a, .nav-list > li.active > a:hover, .nav-list > li.active > a:focus, .nav-list > li.active > a:active {
    background-color: #000000;
    color: #FFFFFF;
}

/*
.icon-double-angle-right:before {
    content: none;
}*/

.ace-nav > li > a > [class*="icon-"] {
    position: relative;
    top: 5px;
}

.navbar .nav {
	/* margin-left: 50px */
}
.menu-min .nav-list>li.open>a {
	background: #000;
}

/*
.menu-min .nav-list>li.open>a {
	background-color: #fafafa;
	color: #ffffff;
}
*/

.itemdiv.dialogdiv>.body { background: #fff; }

/*.page-content {background: f5f5f5;}*/
.btn-light {background-color: #ddd!important; border-color: #ddd; }

.smallprovidericon {
	width:16px;
	height:16px;
}table.watchlist img.userimage {
	border-radius: 10px;
    height: 30px;
    width: 30px;
}


.arrow_box {
	position: relative;
	background: white;
	border: 4px solid white;
	display:none;
	z-index:99;
	width: 300px;
	min-height:100px;
	font-size:12px;
	position: absolute;
	left: 0px;
	border: 1px solid #bbbbbb;
	box-shadow: 0 2px 4px rgba(0,0,0,.2);
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
	background-color:white;
	padding:10px
}
.arrow_box.right:after {
    border-color:transparent;
	border: 0;
}
.arrow_box.right:before {
    border-color:transparent;
	border: 0;
}

.arrow_box:after, .arrow_box:before {
	bottom: 100%;
	left: 5%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: white;
	border-width: 10px;
	margin-left: -10px;
}
.arrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-bottom-color: #bbbbbb;
	border-width: 12px;
	margin-left: -12px;
}

.calendarAllPostsPopup{
	display: none;
	z-index: 30;
	width: 230px;
	position: absolute;
	left: 0px;
	border: 1px solid #cccccc;
	box-shadow: 0 2px 4px rgba(0,0,0,.2);
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
	background-color:white;
}

.calendarAllPostsPopupEvent{
	height:25px;
	color:#000000;
	background-color:white;
	border-bottom:1px solid #ededed;
	margin:5px;
}

.fc .fc-view {
	overflow : visible;
}

.infobox-data-number{
	font-size: 45px !important;
}

.infobox-reporting-data-number{
	font-size: 30px !important;
}

.infobox-content{
	line-height: 25px !important;
}

.mailSubject{
	cursor: pointer;
}

.tree .tree-item, .tree .tree-folder .tree-folder-header {
    color: 	#393939;
    font-family: 'Freight Sans Bold','lucida grande',tahoma,verdana,arial,sans-serif !important;
}

.left-menu-badge {
	top: 5px !important;
	border: none;
	background: #C20000 !important;
	font-size: 9px !important;
	top: 8px !important;
	line-height: 15px;
    min-width: 15px;
}
.new-comment-badge {
	top: 5px !important;
	border: none;
	background: #c9c9c9 !important;
	font-size: 9px !important;
	top: 8px !important;
	line-height: 15px;
    min-width: 15px;
}

.add-sources-fonts {
	font-size: 13px;
}
.table.editabletable th
{
	min-width: 100px;
}
.table.editabletable , .table.editabletable td, .table.editabletable th {
	padding: 1px;
	height:100%;

}

.table.editabletable .selectSources td{
 background-color: transparent;
}

.table.editabletable .editablediv{
	text-align: center;
}

.table.editabletable  .plannedPostStatus, .table.editabletable .extraMediaBoxeditable, .table.editabletable .postDate, .table.editabletable .input-append-editable, .table.editabletable .editableAlignLeft, .table.editabletable .input-append
{
	text-align: left;
	width:100%;
}

.table.editabletable .input-append.dateField, .table.editabletable .input-append.timeField{
	margin-bottom: 0px;

}
.my-profile-sources
{
	margin-top : 5px;
}
.my-profile-sources img
{
	width:20px;
}
.userlist
{
	margin-top : 0px;
}
.userlist img
{
	width:20px;
}
.dialogEditable .marginTop
{
	margin-top : 5px;
}
.dialogEditableHr
{
	margin-top : 15px;
	margin-bottom : 15px;
}

.dialogEditable .providerlogo
{
	width:16px;
	height:16px;
}

.table.editabletable .editableWidth
{
	width: 96%;
	min-width:100px;

}
.table.editabletable .borderLeft{
	border-left:2px solid #E8B110 !important;
	padding-left: 5px;
	margin: 5px;
	height: 93%;
}

.table.editabletable table tbody th tr td{

    height: 100%;
}

.table.editabletable textarea{

    height : 60px;
	margin:0px;
	//width: 91%;
}

.table.editabletable .fontSizeEditable{

  font-size: 12px;
}
.table.editabletable .sourcesColorText{

 color:#9D9D9D;
 margin-left: 2px;
 margin-right: 2px;
}

.table.editabletable .margin-non{

  margin: 0px;
}
.commentsHl
{
	margin-top : 7px;

}
.tablePlannedPostListView tbody tr, .tablePlannedPostListView tbody tr td
{
	height:100%;
}
.btn-white {
background-color: #fff!important;
border-color: #e7e7e7;
color: #888!important;
text-shadow: 0 -1px 0 rgba(250,250,250,0.25)!important;

}
.btn-white.active{
background-color: #e7e7e7!important;


}


.planned_post_filter_border_left {
    border-left: 2px solid;
    padding-left: 4px;
}
.postOrPrepareSpanWidth
{
	width : 220px;
}

.marginTopBy10
{
	margin-top: 10px;
}

.marginTopBy5
{
	margin-top: 5px;
}
span.nameOfUserColor
{
	color: #5d5d5d !important;
}
span.textBeforeUser {
	color:#9D9D9D;
}
.ticket_state_NEW_COMMENT{
	border-color: #444444 !important;
}

tr td.ticket-cb-column, tr th.ticket-cb-column { width: 25px; }
tr.table-selectable-row td { cursor: pointer; }

body {
    padding-top: 0px !important;
}

.navbar-top{
	border-bottom: 1px solid #4D4D4D;
}
.companyUserImage {
	border-radius: 120px;
	border: 2px solid #5293C4;
	max-width: 50px;
	position: relative;
}
.alignTextTop td {
	text-align: left;
	vertical-align: top;
}

.defaultButtonMarginOnLists
{
	margin-top: 2px;
	margin-bottom: 1px;
}

.paddingBottomBy10 {
	padding-bottom: 10px !important;
}

div.messageView .well {
    margin-bottom: 0px;
}

div.messageView .widget-header-ticket-message {
    display: none;    
}

div.messageView div.message_status_border.well {
    background: white;    
}

div.messageView div.messageActions {
    visibility: visible;
}

div.messageView.activeMessage .widget-header-ticket-message {
    display: block;
}

div.messageView.activeMessage div.message_status_border.well {
    background: #f5f5f5;    
}

div.messageView.activeMessage div.body.well:before {
    display: none;
}

div.messageView.activeMessage div.messageActions a.replyToTicketMessage {
    visibility: hidden;
}

div#ticketMessageComposeHolder {
    display: none;
}

.doNotPost, .doNotPost a { color: #afafaf; text-decoration: line-through; }
ul.sources { margin: 10px 0 10px 15px; display: block; list-style: none outside none; }
ul.sources a.source { text-decoration: none !important; cursor: pointer; }
.brand { width: 170px; text-align: center; }
/*JoyRide */
.joyride-tip-guide .joyride-next-tip {
	margin-right: 10px !important;
	background-color: #2283c5 !important;
    border-color: #2283c5;
    font-size: 12px;
    background: none;
    box-shadow: none;
    text-shadow: none;
}

.joyride-tip-guide a {
    border-bottom: none !important;
}

.joyride-tip-guide .disableTour {
    color: #b01905;
    text-decoration: none;
    position: absolute;
    right: 13px;
    bottom: 8px;
}

.joyride-tip-guide .customLink{
    color: #08c ;
    text-decoration: none !important;
}

.joyride-tip-guide a:hover {
  color: rgba(255,255,255,0.8);
  border-bottom: none;
}
.joyride-expose-wrapper
{
	 background-color: transparent !important;
 }
.btn-warning {
	background-color: #ff9900!important;
	border-color: #ff9900;
}

.main-container {
	padding-top: 45px;
}

div.mainTabDiv {
    overflow: visible;
}

.user-info-top{
	max-width: none;
}

.blue-text{
	color: #08c;
}

.navbar .nav > li > a:focus , .navbar .nav .nav-selected {
    color: #fff;
    background: #55aaff;
}

a:link{
	text-decoration: none !important;
	word-wrap: break-word;
}

.label-large.arrowed::before, .label-large.arrowed-in::before {
    border-width: 12px 8px !important;
    left: -15px !important;
}

.main-content{
	margin-left: 210px;
}


.badge-left-menu{
	top: 6px !important;
	line-height: 15px !important;
}

.socialLogos{
	margin:auto;
	width:125px;
	margin-top:5px;
}
.socialLogos .logos{
	width:30px;
}

.socialLogos .logos-twitter{
	margin-left:7px;
	width:30px;
}
.socialLogos .logos-email{
	margin-left:7px;
	width:30px;
}
.zero-margin-t-b{
	margin-top:10px;
	margin-bottom:0px;
}

.sidebar:before {
	width: 210px;
}

.inboxSearchBox {
	float:right;
	margin-top:12px;
}
.checkUncheckSource {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.source_status_ACTIVE {
	color: #FFFFFF !important;
	background-color: #37a500 !important;
	border-radius: 0;
    font-size: 11px;
    font-weight: normal;
    padding: 1px 5px 3px;
    text-shadow: none;
}
.source_status_INACTIVE {
	color: #FFFFFF !important;
	background-color: #a50000 !important;
	border-radius: 0;
    font-size: 11px;
    font-weight: normal;
    padding: 1px 5px 3px;
    text-shadow: none;
}
.inboxSourcesBox {
	float:left;
	margin-top:7px;
}
.hideSourceText {
    overflow: hidden;
	display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
	max-width:130px;
}
.messageTextDraftPostReview
{
	width:500px;
	height:50px;
}
.no-margin{
	margin:0px  !important;
}
.timetableDraft
{
	margin-bottom:5px;
}

.searchInputTitle{
	color:#898989;
}

.inputSearchAdvance{
	width:127px !important;
}

.searchDateInput{
	width:100px !important;
}

 .dateFromDiv > div {
    margin: 0 auto;
 }
 .dateToDiv > div {
    margin: 0 auto;
 }

.userDropdownImage {
	width: 35px;
	height: 35px;
	border-radius: 120px;
	float:left;
}

.userDropDownLi {
	padding: 5px !important;
	border-top: 0 !important;
	height: 45px !important;

}

.userDropDownLi > a {
	text-decoration: none;
}

.notificationList > li > a > div > span > i  {
	 line-height: 32px !important;
}
.inboxCaption{
	word-wrap: break-word;
}
.marginTopBy50
{
	margin-top: 50px;
}
.marginRightBy4
{
	margin-right: 4px;
}
.marginLefttBy4
{
	margin-left: 4px;
}
.ticketSubjectHolder {
	max-width: 40%;
	word-break: break-all;
}

.popover {
	max-width: 100% !important;
}
.noStyleTable > tbody > tr > td {
	border: none !important;
	background-color: transparent !important;
}

.CCTTstyleTable > tbody > tr > .mail-cc-title {
    color: #777 !important;
    cursor: default;
}

.CCTTstyleTable > tbody > tr > td > span {
    color: #08c;
    cursor: default;
}

.CCTTstyleTable > tbody > tr > td > span:after {
    content:",";
}

.CCTTstyleTable > tbody > tr:last-child > td > span:after {
    content:"";
}

.breakWord{
	word-wrap: break-word;
}
.commentDialogdiv > .body::before {
	border-style: none !important;
}
div.commentDialogdiv div.pull-left a {
    text-decoration: none; 
    margin-right:20px; 
    cursor: pointer;
}
.page-content{
	background-color: #FAFAFA;
}
.userDropDownName {
	float:left;
}
.userDropDownUserName {
	float:left;
	font-size: small;
	color: #cacaca;
}
.userDropDownGroupImage {
	float: left;
	font-size: 30px !important;
}
.postPreview
{
	background:white;
	border:1px solid #c5d0dc;
}

.rtdmPreview
{
	background:white;
	border-top:1px solid #c5d0dc;
}
/*
	ace admin updated theme - for source form wizard
*/

.steps li {
    display: table-cell;
    text-align: center;
    width: 1%;
}
.steps {
    list-style: none;
    display: table;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}


.steps li.active:before, .steps li.complete:before, .steps li.active .step, .steps li.complete .step {
    border-color: #5293c4;
}
.steps li:first-child:before {
    max-width: 51%;
    left: 50%;
}

.steps li:before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    font-size: 0;
    overflow: hidden;
    border-top: 4px solid #CED1D6;
    position: relative;
    top: 25px;
    z-index: 1;
}

.steps li:last-child:before {
    max-width: 50%;
    width: 50%;
}


.steps li .step {
    border: 5px solid #ced1d6;
    color: #546474;
    font-size: 15px;
    border-radius: 100%;
    background-color: #FFF;
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.steps li.complete .title, .steps li.active .title {
    color: #2b3d53;
}

.steps li .title {
    display: block;
    margin-top: 4px;
    max-width: 100%;
    color: #949ea7;
    font-size: 14px;
    z-index: 104;
    text-align: center;
    table-layout: fixed;
    word-wrap: break-word;
}

.steps li.complete .step {
    cursor: default;
    color: #FFF;
    -webkit-transition: transform ease .1s;
    -o-transition: transform ease .1s;
    transition: transform ease .1s;
}

.steps li.complete .step:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    content: "\f00c";
    background-color: #FFF;
    z-index: 3;
    font-family: FontAwesome;
    font-size: 17px;
    color: #87ba21;
}
/*
	wizard specific css
*/
.wizard-container {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 3px 0;
   // border: 1px solid #CCC;
}

.wizard-hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}
.wizard-body {
    padding: 12px;
}

.wizard-header-flat {
    background: #F7F7F7;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.wizard-header {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    min-height: 38px;
    background: #f7f7f7;
    background-image: -webkit-linear-gradient(top,#fff 0,#eee 100%);
    background-image: -o-linear-gradient(top,#fff 0,#eee 100%);
    background-image: linear-gradient(to bottom,#fff 0,#eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
    color: #669fc7;
    border-bottom: 1px solid #DDD;
    padding-left: 12px;
}

.wizard-header>.wizard-title {
    line-height: 36px;
    padding: 0;
    margin: 0;
    display: inline;
}
.lighter {
    font-weight: lighter;
}
.wizard-image {
    border-radius: 120px;
    border: 2px solid #5293c4;
    max-width: 36px;
    position: relative;
	border-color: #c9d6e5;
}
.wizard-response-container {
	position:relative;

}
.wizard-boxed
{
   float:left;
   border: 1px solid #CCC;
   padding: 5px;
   margin: 5px;
}
.wizard-boxed-left
{
   float:left;
   border: 1px solid #CCC;

   padding: 5px;

}



.source_like_icon{
	float: left;
	background-size: 100px 100px;
	height: 100px; width: 100px;
	border: 1px solid grey;
	border-radius: 8px;
	margin: 15px 15px 0 0;
}

.wizard-alert-blue
{
	margin-bottom: 0px;
    padding: 10px;
    font-size: 12px;
}
/*-
 on off switch
 */
.onoffswitch {
    position: relative; width: 220px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 1px solid #999999; border-radius: 0px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: attr(data-before);
    padding-left: 10px;
    background-color: #5293c4; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: attr(data-after);
    padding-right: 10px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 186px;
    border: 1px solid #999999; border-radius: 0px;
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.wizard-mail-template
{
	float:left;
	width:450px;
}
.wizard-control
{
	margin-top:9px !important;
}
.stepTitle {
   display:inline-block;
    position: relative;
    margin: 0;
    border-bottom: 1px solid #E0E0E0;
    padding: 5px;
	font-size: 18px;
	margin-bottom:10px;
}

.wizard-control-label{
	margin-right:10px !important;
	width:auto !important;
}

.wizard-control-tw{
	margin-left:0px !important;

}
table.itemlistuser td, table.itemlistuser th {
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
}
/*sources icons*/
.rcube
{
	border: 1px solid grey;
}

.rcube.xsmall
{
	border-radius: 2px;
	height:16px;
}

.rcube.small
{
	border-radius: 4px;
	height:32px;
}
.rcube.medium
{
	border-radius: 6px;
	height:64px;
}
.btn  .rcube
{
	border:none;
}
.no-border
{
	border:none;
}

.icon.medium
{
	font-size:15px;
}
.addAttachmentStyle
{
	float: left;
	margin-top:10px;
	margin-left:3px;
}

.wizard-boxed.groups
{
	display: flex;
	justify-content: center;
	align-items: center;
}


.wizard-image-response {
    border-radius: 120px;
    border: 2px solid #5293c4;
    position: relative;
	width:70px;
	border-color: #c9d6e5;
}
.wizard-boxed-left div
{
	float:left;
	text-align: center;
	margin-top:5px;
	height:100%;
}

.dropdown-page-menu
{
	overflow-y: hidden;
	overflow: auto;
	max-height: 500px;
	min-width: 60px;
}

.menuTopHolder
{
	display:block !important;
}
.menuTopHolder .menuTop span
{
    HEIGHT: 35px;
    width:170px;
    white-space: pre-wrap;
	display: table-cell;
    vertical-align: middle;
    text-align:left;
}
.menuTopHolder .menuTop
{

    max-width: 200px;
    overflow: hidden;
    display: block;
}

.menuTopHolder .menuTopBadge
{
	margin-top:6px;
}
.menu-reports-item{
	border-bottom:1px solid #444;
}

.report-title{
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 17px;
	color: #777;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 35px;
	border-bottom: 1px solid #D8D8D8;
}

.report-subtitle{
	font-size: 12px;
	color: #ccc;
}

.reportSourceWrraper{
	border: 1px solid #D8D8D8;
	margin-right: 20px;
	float: left;
}

.reportSourceContainer{
	height:100px;
	width:200px; 
	position: relative;
}

.reportSourceImgContainer{
	height:100%;
	width:50%;
	float:left;
	background-color:#E6E6E6;
}

.reportSourceData{
	width:50%;
	float:right;
}

.reportSourceImg{
	height:100%;
	width:100%;
}

.reportSourcePercentageContainer{
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 12px;
	text-align:right;
	margin-right:5px;
	margin-top:5px;
}

.reportSourceTitleContainer{
	background-color:rgba(51, 51, 51, 0.4);
	color:#fff;
	padding-left: 5px;
	vertical-align:middle;
	width: 98%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.reportSourceIcon{
	float:right;
	width:10px;
	height:10px;
	margin-top:5px;
	margin-right:5px;
}
.reportSourceTopData{
	color: #777777;
    font-weight: 400;
	font-size: 12px;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	float: right; 
	padding-right: 5px;
}

.reportTriangle {
    width: 0;
    height: 0;
    border-left: 2em solid transparent;
    border-right: 2em solid transparent;
    border-top: 2em solid #FFFFFF;
    position:relative;
}
.reportTriangle:after{
    content:'';
    position:absolute;
    top:-25px;
    left:-24px;
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-top: 24px solid #FFF;
}

.reportSquareGood{
	width: 30px;
	height: 30px;
	background: #49f770;
}

.reportSquareBad{
	width: 30px;
	height: 30px;
	background: #ffed5e;
}

.reportSquareAvarage{
	width: 30px;
	height: 30px;
	background: grey;
}

.reportSquareAwful{
	width: 30px;
	height: 30px;
	background: #ff3155;
}

.reportNoDataContainer{
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #808080;
	width: 100%;
	height: 70%;
	display: none;

}

.reportNoData{
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    text-align:center;
	color: #ccc; 
	min-width: 150px;
	min-height: 50px ;
    display: table-cell;
    vertical-align: middle 
}

.reportNoDataText{
	color: #CFCFCF;
	font-size: 25px;
	text-align: center;
	vertical-align: middle;
	
}

.reportText{
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #808080;
}

.extraMediaBoxInput{
	width:400px;
}
.previewAttachment
{
	background:#EFEFEF;
}
.previewAttachment form
{
	margin:0px;
}
.previewAttachment .previewUploadFile
{
	margin-left:5px;
}

.previewAttachment span
{
	float:left;
	margin-left:5px;
	margin-top:5px;
}

.previewAttachment .inline
{
	margin-bottom:5px;
}

.fileDropZone {
	position: relative;
	min-height: 6em;
	margin: 1em 0;
}

.fileDropZone .dz-text {
	display: none;
	text-align: center;
	vertical-align: middle;
	margin: 0 auto;
	padding: 2em 0;
}
.fileDropZone .dz-text .dz-drop-msg { font-size: 1.4em; color: #999; display: block; }
.fileDropZone .dz-text .dz-info { color: #AAA; }
.file-drag-active .fileDropZone, .fileDropZone.dz-drag-hoverx, .fileDropZone.dz-visible {
	border: 3px dashed #cfcfcf;
	background: #f8f8f8;
}
.file-drag-active .fileDropZone .dz-text, .fileDropZone.dz-drag-hoverx .dz-text, .fileDropZone.dz-visible .dz-text {
	display: block;
}

.dz-file {
		display: block;
		min-width: 25em;
		max-width: 25em;
		margin: 0.2em 0.1em;;
		background: #efefef;
}
.fileDropZone.dz-visible .dz-file { max-width: 100em; }
.dz-file .dz-details { float: left; }
.dz-file .dz-filename { display: inline-block; }
.dz-file .dz-size { display: inline-block; }
.dz-file .dz-size:before { content: "("; margin-left: 0.2em; }
.dz-file .dz-size:after { content: ")"; }
.dz-file .dz-progress {
	float: right;
  width: 100px;
  display: inline-block;
  height: 20px;
  margin: 2px 4px;
}
.dz-file .dz-upload {
	height: 100%;
	background: #afafaf;
	display: inline-block;
}
.dz-file.dz-success .dz-progress { display: none; }
.dz-file .dz-remove { float: right; margin: 2px 4px; cursor: pointer; }
.dz-file .dz-error-message { float: left; }
.dz-file .dz-clear { clear: both; }

.commentsForm
{
	margin-bottom:5px;
}

.plannedPostsHr
{
	margin: 10px 0;
    border: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
}


.btn-white.btn-danger {
    border-color: #d7a59d;
    color: #b7837a!important;
}

.btn-white.btn-danger.active, .btn-white.btn-danger:active, .btn-white.btn-danger:focus, .btn-white.btn-danger:hover, .open>.btn-white.btn-danger.active.dropdown-toggle, .open>.btn-white.btn-danger.dropdown-toggle {
    background-color: #fbf4f3!important;
    border-color: #d7a59d;
    color: #b46f64!important;
}

.label.label-white {
    color: #879da9;
    border: 1px solid #abbac3;
    background-color: #f2f5f6;
    border-right-width: 1px;
    border-left-width: 2px;
}

.label-white.label-info {
    color: #4e7a8f;
    border-color: #7aa1b4;
    background-color: #fff!important;
}
.label-white.label-danger {
    color: #bd7f75;
    border-color: #d28679;
    background-color: #fff!important;
}
.label-white.label-warning {
    color: #d9993e;
    border-color: #e4ae62;
    background-color: #fff!important;
}

.notificationList li { padding-bottom: 4px; }
div.companyBox {
  min-height: 1.2em;;
  padding: 0.2em 0 0.2em 0;
  margin-bottom: 0.2em;
  border-bottom: 1px dotted #afafaf;
}

div.companyBox div.company-img {
  border-radius: 2px;
}

div.companyBox div.company-img img {
  border-radius: 4px;
  max-width: 24px;
  max-height: 24px;
  margin: 2px 5px 2px 0px;
  margin-bottom: -1em;
}

div.companyBox div.company-name {
  margin-top: 1em;
  max-width:70%;
}

div.companyBox div.company-name span {
  text-align: left;
  color: #393939;
  font-size: 1em;
}
div.companyBox div.clear-button {
  margin-top: 4px;
}

.company-sources { position: relative; display: inline; margin-left: 0.5em; }
.company-sources .source { display: inline; color: #777!important }
.company-sources .source .label-white { background: #ffffff !important; }
.company-sources > .source:after { display: inline; content: ", "; position: relative; left: -0.3em; }
.company-sources > .source:last-child:after { display: inline; content: ""; }
.company-sources .providerlogo { margin: 0 0; }

.company-notifications {
  margin-bottom: 0.2em;
  padding: 0 0 ;
}
.company-notifications a.company-notification .label { margin-top: 1px; }
.company-notifications a.company-notification {
  display: block;
  min-height: 22px;
  cursor: pointer;
  padding: 2px 4px;
}

.company-notifications a.company-notification:hover {
  background: #dfdfdf;
  color: #08c;
  text-decoration: none;
}
.company-notifications a.company-notification .msg {
	width: 80%;
  color: #478fca;
}


.fullReview
{
	margin:0px !important;
}
.fullReview .btn
{
		float: right;
		margin-top:10px;
		margin-bottom:10px;
}
.overlay
{
	position: absolute;
    top: 0;
    left: 0;
    bottom: -1000px;
    right: 0;
    background: #dfdfdf;
    opacity: 0.5;

}
.inside
{
	font-size: 20px;
	text-align: center;
     margin-top:5px;
}
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
    overflow:hidden;
    box-shadow:0px 1px 3px rgba(0,0,0,0.25);
    border-radius:3px;
    background:#f7f7f7;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width:100%;
    padding:15px;
    display:inline-block;
    border-bottom:1px solid #1a1a1a;
    background:#e4e4e4;
    transition:all linear 0.15s;
    /* Type */
    font-size:1.200em;
   
    color:#2b3d53;
}
 
.accordion-section-title.active, .accordion-section-title:hover {
    background:#cacaca;
    /* Type */
    text-decoration:none;
}
 
.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
}
.accordion-section-title:hover,.accordion-section-title:focus {
    color: #2b3d53;
    text-decoration: underline;
}

.source-list { margin-top: 1em; }
.source-list .source {
    position: relative;
    border-radius: 0.2em;
    padding: 0.5em 0.5em;
    margin-right: 2em; margin-bottom: 2em;
    background-image: url('../img/bg-transparent.png');
    width: 16em;
    min-height: 6em;
    float: left;
}
.source-list .source img { max-width: 3.7em; max-height: 3.7em; }
.source-list .source.inactive {
    color: #afafaf;
}
.source-list .source img { float: left; }
.source-list .source.inactive .name .text { text-decoration: line-through;}
.source-list .source .name {
	color: #777;
    float: left;
    margin-top: 0.5em;
    padding: 0.2em 0.2em 0 0.2em;
    width: 100%;
    border-top: 1px dotted #efefef;
    cursor: pointer;
}
.source-list .source .status { float:right; padding: 0.2em 0.2em 0 0.2em; }
.source-list .source .data { float: right; width: 12em; max-width: 12em; display: block; text-align: right; }


.sort-list .sort-item a { cursor: pointer; }

.table.table-modern th, .table.table-modern td { padding: 8px; }

.published-post .date { display: block; }
.published-post .time { display: block; margin-bottom: 10px; font-size: 0.9em; color: #777; }
.published-post .source { color: #777; }
.published-post .message img { float: left; max-width: 48px; max-height: 48px; }

.published-posts .head-dateSource { width: 140px; min-width: 140px; }
.published-posts .head-interactions { width: 180px; min-width: 180px; }
.published-posts .head-reach { width: 180px; min-width: 180px; }

tr.published-post.paid td:first-child { position: relative; }
tr.published-post.paid td:first-child:after { content: '\f155'; display: block; font-family: FontAwesome; position: absolute; top: 4px; right: 4px; color: green; }

.insights-adds .head-dateSource { width: 12em; min-width: 12em; }

.insights-adds .head-status { width: 2em; min-width: 2em; }
.insights-adds .head-results { width: 4em; min-width: 4em; }
.insights-adds .head-reach { width: 4em; max-width: 4em; }
.insights-adds .head-costs, .insights-adds .head-spent { width: 8em; min-width: 8em; }

.insights-adds .source { color: #777; }
.insights-adds .status i { display: block; width: 1em; height: 1em; margin: auto auto; }
.insights-adds .status.active { color: green; }
.insights-adds .status { color: red; }

.insights-adds .num { display: block; font-weight: bold; }
.insights-adds .desc { color: #777; font-size: 0.9em; }

.insights-adds .posts { margin-top: 1em; margin-bottom: 1em; }
.insights-adds .posts .actions { float: right; margin-left: 1em; }
.insights-adds .posts .post { border-top: 1px dotted #afafaf; margin-top: 1em; padding-top: 0.5em; }
.insights-adds .posts .post:after { content: ''; display: block; clear: both; }
.insights-adds .posts .post .images { float: left; max-width: 8em; width: 4em; margin-right: 1em; }
.insights-adds .posts .post .images img { max-width: 3.7em; width: 3.7em; }

.source-list .source .data .insights-adds-spent { font-size: 2em; display: block; }
.source-list .source .data .insights-adds-desc { font-size: 0.9em; color: #777; }


.reportPositiveValue {
    color:#9abc32;
	font-size:12px;
	font-weight: 400;
}

.reportAverageValue {
    color:#777777;
	font-size:12px;
	font-weight: 400;
}

.reportNegativeValue {
    color:#E4564F;
	font-size:12px;
	font-weight: 400;
}

.reportValuesTop {
	font-size:12px;
	font-weight: 400;
}

.chartWrraper{
     padding-left: 5px;
}

.chartContainer{
	/*min-height: 50px; */
}

/* Fix widget header - color of a inside header should be white not blue */
.widget-header a { color: #ffffff; }
.pinsCount
{	
	float:right;
	font-size: 0.9em;
	color : cornflowerblue;
}

/* Fix widget header - color of a inside header should be white not blue */
.widget-header a { color: #ffffff; }


.reportLabelsTooltip{
	text-align: left;
	cursor: pointer;
	border-bottom: 1px solid #D8D8D8;
	padding-right: 0.5em !important;
}

/* Tooltip container */
.tooltipBookmark {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.bookmarkRendered {
  position: relative;
  display: inline-block;
}
.tooltipBookmark .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  margin-bottom: 20px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltipBookmark .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipBookmark .tooltiptext {
  visibility: hidden;
  opacity: 0;
}
.reportLabelsShareSize{
	font-size : 1.3em;
	font-weight : 600;
	width: 10px;
}

.reportLabelsShareTop{
	text-align:center;
	height: 40px;
}

.reportLabelsShare{
	text-align:center; 
	border:1px solid #D8D8D8; 
	height:40px;
	background-color:#fff;
}

.reportLabelColor{
	height:40px;
	width:1px;
}

.not-checkable .checkUncheckSource, .not-checkable .name { cursor: not-allowed !important; }

.source-list .source .data{
	min-height : 60px;
}

.highcharts-container { 
	overflow: visible !important;
}
.highcharts-container svg {
    overflow: visible !important;
}
.tooltop-date{
	font-size:11px;
}

.searchUserList tr.inactive td {
    color: #afafaf;
}

.searchUserList tr.inactive td:first-child {
    text-decoration: line-through;
}


/*!
 * font-awesome-animation - v0.0.7
 * https://github.com/l-lin/font-awesome-animation
 * License: MIT
 */
/* PULSE */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.faa-pulse.animated,
.faa-pulse.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-pulse {
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
}

.faa-pulse.animated.faa-fast,
.faa-pulse.animated-hover.faa-fast:hover,
.faa-parent.animated-hover:hover > .faa-pulse.faa-fast {
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}

.faa-pulse.animated.faa-slow,
.faa-pulse.animated-hover.faa-slow:hover,
.faa-parent.animated-hover:hover > .faa-pulse.faa-slow {
  -webkit-animation: pulse 3s linear infinite;
  animation: pulse 3s linear infinite;
}

/* SHAKE */

@-webkit-keyframes wrench {
  0% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }

  8% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
  }

  10% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  18% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  20% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  28% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  30% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  38% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  40% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  48% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  50% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  58% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  60% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  68% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  75%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes wrench {
  0% {
    -webkit-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }

  8% {
    -webkit-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    transform: rotate(12deg);
  }

  10% {
    -webkit-transform: rotate(24deg);
    -ms-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  18% {
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  20% {
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  28% {
    -webkit-transform: rotate(24deg);
    -ms-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  30% {
    -webkit-transform: rotate(24deg);
    -ms-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  38% {
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  40% {
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  48% {
    -webkit-transform: rotate(24deg);
    -ms-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  50% {
    -webkit-transform: rotate(24deg);
    -ms-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  58% {
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  60% {
    -webkit-transform: rotate(-24deg);
    -ms-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }

  68% {
    -webkit-transform: rotate(24deg);
    -ms-transform: rotate(24deg);
    transform: rotate(24deg);
  }

  75%, 100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}


.faa-shake.animated,
.faa-shake.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-shake {
  -webkit-animation: wrench 2.5s ease infinite;
  animation: wrench 2.5s ease infinite;
}

.faa-shake.animated.faa-fast,
.faa-shake.animated-hover.faa-fast:hover,
.faa-parent.animated-hover:hover > .faa-shake.faa-fast {
  -webkit-animation: wrench 1.2s ease infinite;
  animation: wrench 1.2s ease infinite;
}

.faa-shake.animated.faa-slow,
.faa-shake.animated-hover.faa-slow:hover,
.faa-parent.animated-hover:hover > .faa-shake.faa-slow {
  -webkit-animation: wrench 3.7s ease infinite;
  animation: wrench 3.7s ease infinite;
}


/*.status-color*/
/*{*/
	/*background-color: 20px;*/
	/*text-align: center;*/
    /*margin-top:5px;*/
/*}*/
/*
EO font-awesome-animation - v0.0.7
*/

/* loader ui */
@keyframes bg2lock {
    0% { bottom: 0; right: 0.5em; margin-right: 0em; }
    100% { bottom: 60%; right: 50%; margin-right: -20em; }
}
@keyframes lock2bg {
    0% { bottom: 60%; right: 50%; margin-right: -20em;}
    100% { bottom: 0;  right: 0.5em; margin-right: 0em; }
}
@keyframes bg2hide {
    0% { right: 0.5em; }
    100% { right: -80em; width: 20em; }
}
@keyframes loaderShow {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

div.loader {
    overflow:hidden;
    width:40em;
    background:#fff;
    border:1px solid black;
    border-radius: 0.2em 0.2em 0 0;
    padding: 0.2em;
    box-shadow: 0.2em 0.2em 0.2em #999;
    z-index: 50;

    position:fixed;
    bottom: 0;
    right: 0.5em;
}
div.loader.loader-hide {
    position:fixed;
    bottom: 0;
    right: -80em;
    animation-name: bg2hide;
    animation-duration: 0.5s;
}

div.loader.none2show { animation-name: loaderShow; animation-duration: 0.5s; }
div.loader .loader-text-background, div.loader .loader-text-locking { display: none; }
div.loader.loader-locking .loader-text-locking { display: block; }
div.loader.loader-background .loader-text-background { display: block; }

div.loader .loader-text {
    border-bottom: 0.1em dotted #333;
    margin-bottom: 0.5em;
    padding: 0.5em 0.5em;
    text-align: center;
}
div.loader .loader-requests {
   padding: 0.5em;
}
div.loader .loader-request .text {
   color: #333;
}
div.loader .loader-request .icon {
   margin-right: 0.5em;
   color: #333;
}
div.loader .loader-request.done .icon { color: #82af6f; }
div.loader .loader-request.active .icon { color: #e8b110; }
div.loader .loader-request .time { float: right; }
div.loader .loader-request { clear: both; }

.btn-checkbox {
    color: #333 !important;
    font-size: 16px;
    width: 12px;
}

.btn-checkbox i.fa-square-o,
.btn-checkbox i.fa-check-square-o {
    padding-top: 4px;
}

.widget-body .ticketToAttachmentView { border-bottom: 1px solid #dde4ed; }
.widget-body button.saveTicketAtachments,
.widget-body button.changePriority { 
    display: inline-block; 
    float: right;     
    margin-top: 5px;
}

.widget-body .attachmentsTable .selectBoxAttachToMail,
.widget-body .attachmentsTable .selectBoxSaveToDocSys { 
    color: #333 !important; 
}

.widget-body .attachmentsTable .selectBoxSaveToDocSys.disabled { color: #ddd !important; cursor:default;}
.widget-body .attachmentsTable .selectBoxSaveToDocSys.syncing { cursor: default;}

.btn-group-search .btn-small { padding-top: 1px; padding-bottom: 1px; }
.btn-group-search { margin-bottom: 8px; }
.modal { margin-top: 4em; }

span.mceIcon.mce_extractInlineAttachment {
    background: url(../img/extract-inline-attachment.png);
}

ul.labelList i.fa {
    padding-top: 3px;
    padding-right: 10px;
    vertical-align: middle;
}

.icon-star.watchSource.color
{
	color: #0088CC
}

i.groupLabel.all:before,
i.groupLabel.some:before,
i.groupLabel.none:before {
    padding-top: 3px;
    padding-right: 10px;
    vertical-align: middle;    
}
i.groupLabel.all:before { content: "\f046"; }
i.groupLabel.some:before { content: "\f147"; }
i.groupLabel.none:before { content: "\f096"; }

div.externalUsers .well {margin: 0 -12px 1em -12px; border-left: 0; border-right:0;}
div.externalUsers .linkedCompanyUsersAlertBox {margin: 0 -12px;}
div.externalUsers .ticketCompanyUserAlertBox {margin: -1em -12px;}
div.externalUsers .ticketCompanyUserDataAlertBox {margin:-1em -12px;}
div.externalUsers .companyUserDataAlertBox {margin: -1em -12px;}
div.externalUsers .unlinkCompanyUser {cursor:pointer;}
div.externalUsers .showLinkedCompanyUserInfo {cursor:pointer;}
div.externalUsers .searchForCompanyUsers {cursor:pointer;}
div.externalUsers .linkCompanyUser {cursor:pointer;}
div.externalUsers .linkCompanyUserToTicket {cursor:pointer;}
div.externalUsers .companyUserLoadingAlertBox {margin: -1em -12px;}


div.externalUsers .linkedCompanyUserDiv {padding-bottom: 1em;}
.externalUsers .companyUserData {font-weight: bold; width: 50%;}
.userSearchButton{margin-top:-10px;}
.queryCancel{margin-top:-10px;}
.userSearchBox{width:250px;}
#search-type{width:100px;}
div.externalUsers #companyUserHistory {width: 100%;}
div.externalUsers .alignTextTop {width:100%;}
div.externalUsers a.btn-small:hover {text-decoration:none;}
div.externalUsers hr{border-width:3px; margin: 1em -12px;}
div.externalUsers .btn-group {float:right;}
div.externalUsers .companyUserDataTd{width:40%;}
div.externalUsers .linkedCompanyUserInfo {padding-top: 1em;}
div.externalUsers .tab-content {padding: 0 12px;}
div.externalUsers div.popover.left {margin-left: -16em; margin-top: -3em;}

label {cursor: default;}

/* Overriding blockquote from bootstrap.css*/

blockquote p {
 
  font-size: inherit;

}

.label.arrowed-right {padding: 3px 5px 3px !important;}
.label.arrowed-right:after, .label.arrowed-in-right:after {
	border-width: 10px 7px;
}

.td-subMessagesSelectOptions > div > div.subMessagesSelectOptions > div > ul {
	top: auto;
	left: auto;
}

/*=====================================================
=            Custom Media Queries            =
=====================================================*/
@media screen and (max-width : 1300px) {
	.main-container {
		padding-top: 90px;
	}
	.sidebar {
	display:block !important;
    top: 90px !important;
	}
}

@media screen and (max-width : 1240px) {

	.row-fluid [class*="span"] {
		display: block;
		float: none;
		width: 100%;
		margin-left: 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
}

@media only screen and (max-width: 979px)
{
	div.main-content {
    margin-left: 210px !important;
	}
	
	.sidebar.menu-min+.main-content {
		margin-left: 43px !important;
	}
	
	.sidebar {
	display:block !important;
    top: -40px !important;
	}
}

@media only screen and (min-width: 320px) and (max-width: 1024px)
{
	div.page-content {
    margin-top: 50px !important;
	}
	
}
/*=====================================================
=            Bootstrap Media Queries            =
=====================================================*/
@media screen and (max-width : 1200px) {
	.main-container {
		padding-top: 90px;
	}
	
	.sidebar.menu-min+.main-content {
		margin-left: 43px !important;
	}
}

@media screen and (max-width : 992px) {
	.main-container {
		padding-top: 0px;
	}
	.sidebar.menu-min+.main-content {
		margin-left: 43px !important;
	}
	.navbar .btn-navbar {
    display: none;
}
}

@media screen and (max-width : 768px) {
	.main-container {
		padding-top: 0px;
	}
	.sidebar.menu-min+.main-content {
		margin-left: 43px !important;
	}

}

@media screen and (max-width : 480px) {
	.main-container {
		padding-top: 0px;
	}
	.sidebar.menu-min+.main-content {
		margin-left: 43px !important;
	}
}

@media screen and (max-width : 320px) {
	.main-container {
		padding-top: 0px;
	}
	.sidebar.menu-min+.main-content {
		margin-left: 43px !important;
	}
}
/*=====================================================
=====================================================*/
/*
GAME
 */
.game
{
	position:absolute;
	width:400px;
	height:600px;
	left:400px;
	border:1px solid #000;
	overflow:hidden;
	background: whitesmoke;
}
.gameToolbar
{
	background: blueviolet;
}

.gamePanel
{
	position:relative;
	width:100%;
	height:400px;
	border-bottom:7px solid #000;
	overflow:hidden;
}



.balloon {
	width:30px;
	height:30px;
	border-radius:80%;
	position:absolute;
	box-shadow:inset -10px -10px 0 rgba(0,0,0,0.07);
	transition:transform 0.5s ease;
	z-index:10;
	animation:balloons 4s ease-in-out infinite;
	transform-origin:bottom center;
}

@keyframes balloons {
	0%,100%{ transform:translateY(0) rotate(-14deg); }
	50%{ transform:translateY(-5px) rotate(4deg); }
}






/* Sample */

.text-complete-dropdown-menu {
    border: 1px solid #ddd;
    background-color: white;
    z-index: 99999 !important;
}

.text-complete-dropdown-menu li {
    border-top: 1px solid #ddd;
    padding: 5px 15px 5px 15px;
}

.text-complete-dropdown-menu a{
    color:#000000 !important;
}

.text-complete-dropdown-menu .active a{
	color:#FFFFFF !important;
}

.text-complete-dropdown-menu a:hover {
    color:#FFFFFF !important;
}

.text-complete-dropdown-menu li:first-child {
    border-top: none;
}

.text-complete-dropdown-menu li:hover,
.text-complete-dropdown-menu .active {
    background-color: #4f99c6;
	
}


/* SHOULD not modify */

.text-complete-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-complete-dropdown-menu a:hover {
    cursor: pointer;
}

/*
 * jquery.urlive.css v1.0.4, jQuery URLive
 *
 * View the plugin repository at:
 * https://github.com/markserbol/urlive
 *
 * Added css properties, changes
 * @author Uros
 */
.urlive-container
{
	text-align:left important!;
}
.urlive-link {
	color:inherit;
	text-decoration:none;
	display:block;
	width:auto;
	overflow:auto;
	position:relative;
	padding:10px;
	overflow:hidden;
	margin:0;
	background:#EFEFEF;

}


.urlive-link:hover {
	box-shadow:0 0 4px rgba(10,10,10,0.6);
	text-decoration: none;
	color:black;
}

.urlive-link * {
	display:block;
}

.urlive-image {
	width:100%;
	display:block;
}

.urlive-title {
	font-size:13px;
	font-weight:bold;
}

.urlive-url {
	font-size:11px;
}

.urlive-description {
	font-size:12px;
}

.urlive-sitename, .urlive-type, .urlive-url {
	display:none;
}

.urlive-img-wrapper {
	float:left;
	margin-right:10px;
}

.urlive-text-wrapper {
	overflow:auto;
}

/* IMAGE SMALL STYLES*/
.urlive-img-small .urlive-img-wrapper {
	width:auto;
	max-width:200px;
}

/* IMAGE LARGE STYLES */
.urlive-img-large .urlive-img-wrapper {
	width:100%;
	max-width:none;
}

.urlive-img-large .urlive-text-wrapper {
	clear:both;
}

.loadingMarginRight
{
	margin-left:130px;
}

@CHARSET "UTF-8";

/* left menu css overides */


#leftMenu .nav > li > a:focus {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 center;
    color: #fff;
}

#leftMenu .nav-list > li > a:focus {
    background: none;
    color: #ccc;
    top: 0;
}

#leftMenu .nav-list > li > a:hover {
    background: #444 none repeat scroll 0 0;
    color: #fff;
    top: 0;
}

#leftMenu .nav-list  {
    border-bottom: 1px solid #444;
    border-top: none;
}

#leftMenu .nav-list > li {
    border-bottom: none;
    border-top: none;
}

.left-menu-icon-fixed-width {
	display: inline-block !important;
    text-align: center !important; 
    width: 7px !important; 
    margin-right: 1em !important;
}
/*# sourceMappingURL=packed.min.css.map */
