.SlectBox {
  width: 200px;
  padding: 5px 8px; }

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.SumoSelect > .optWrapper > .options > li label, .SumoSelect > .CaptionCont {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none; }

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none; }

.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont {
  box-shadow: 0px 0px 2px #7799D0;
  border-color: #7799D0; }

.SumoSelect > .CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0px; }

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default; }

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic; }

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 30px; }

.SumoSelect > .CaptionCont > label > i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=");
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8; }

.SumoSelect > .optWrapper {
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -moz-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -ms-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -o-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: -100;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden; }

.SumoSelect > .optWrapper.open {
  top: 35px;
  visibility: visible;
  opacity: 1;
  z-index: 1000; }

.SumoSelect > .optWrapper > .options {
  list-style: none;
  display: block;
  padding: 0px;
  margin: 0px;
  overflow: auto;
  border-radius: 2px;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/ }

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0px 0px 100px #595959; }

.SumoSelect > .optWrapper > .options > li {
  padding: 6px 6px;
  border-bottom: 1px solid #F3F3F3;
  position: relative; }

.SumoSelect > .optWrapper > .options > li:first-child {
  border-radius: 2px 2px 0px 0px; }

.SumoSelect > .optWrapper > .options > li:last-child {
  border-bottom: none;
  border-radius: 0px 0px 2px 2px; }

.SumoSelect > .optWrapper > .options > li:hover {
  background-color: #E4E4E4; }

.SumoSelect > .optWrapper > .options > li.sel {
  background-color: #a1c0e4; }

.SumoSelect > .optWrapper > .options > li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer; }

.SumoSelect > .optWrapper > .options > li span {
  display: none; }

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 90%;
  bottom: 0px;
  margin: auto;
  max-height: 90%; }

/*Hover*/
/*.SumoSelect:hover > .CaptionCont > label { background-color: #F1F1F1; }*/
/*disabled state*/
.SumoSelect > .optWrapper > .options > li.disabled {
  background-color: inherit;
  pointer-events: none; }

.SumoSelect > .optWrapper > .options > li.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 5-7 */
  filter: alpha(opacity=50);
  /* Netscape */
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5; }

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options > li {
  padding-left: 35px;
  cursor: pointer; }

.SumoSelect > .optWrapper.multiple > .options > li span,
.SumoSelect .select-all > span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0px;
  bottom: 0px;
  margin-left: -35px; }

.SumoSelect > .optWrapper.multiple > .options > li span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff; }

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.13);
  border-radius: 0px 0px 3px 3px; }

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0px;
  width: 100%; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0px 0px 0px 3px; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0px 0px 3px 0px; }

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options > li {
  padding: 12px 6px; }

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options > li {
  padding-left: 35px; }

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px; }

/*selected state
    .SumoSelect > .optWrapper.multiple > .options > li.selected span i:after,
    .SumoSelect .select-all.selected > span i:after{content: '';position: absolute;width: 11px;height: 11px;top: 2px;left: 2px;background-color: rgb(17, 169, 17);border-radius: 2px;box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);}
    */
.SumoSelect > .optWrapper.multiple > .options > li.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
  background-color: #11a911;
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center; }

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed; }

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  box-shadow: none; }

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0px 0px;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0px 3px 35px;
  height: 20px; }

.SumoSelect .select-all > span i {
  cursor: pointer; }

.SumoSelect .select-all.partial > span i {
  background-color: #ccc; }

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options > li.optGroup {
  padding-left: 5px;
  text-decoration: underline; }

.country_slct_div {
  width: 215px;
  float: left;
  margin-left: 21px; }
  .country_slct_div .sbOptions {
    width: 215px; }

.crse_grp_div {
  width: 250px;
  float: left; }
  .crse_grp_div .sbOptions {
    width: 250px; }
  .crse_grp_div div.sbHolder {
    width: 225px; }
  .crse_grp_div a.sbSelector {
    width: 220px; }

.ssi-tip {
  position: absolute;
  z-index: 3; }

.tip-container {
  background-color: #fff;
  /* box-shadow: 0px 0px 3px 2px #bebebe; */
  -moz-box-shadow: 0px 0px 3px 2px #bebebe;
  -webkit-box-shadow: 0px 0px 3px 2px #bebebe;
  zoom: 1;
  filter: progid:DXImageTransform.Microsoft.Shadow(Color=#bebebe, Strength=4, Direction=0), progid:DXImageTransform.Microsoft.Shadow(Color=#bebebe, Strength=4, Direction=90), progid:DXImageTransform.Microsoft.Shadow(Color=#bebebe, Strength=4, Direction=180), progid:DXImageTransform.Microsoft.Shadow(Color=#bebebe, Strength=4, Direction=270);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  position: absolute;
  padding: 14px 11px;
  z-index: 0;
  width: auto;
  min-width: 201px;
  right: 0px;
  top: 0; }

.ie8 .tip-container {
  border: solid 1px #bebebe; }

.ssi-tip-arrow {
  background: url(../images/ie8WhitArrow.png) left top no-repeat;
  width: 19px;
  height: 10px;
  position: absolute;
  top: -10px;
  right: 25px;
  z-index: 99; }

.ie8 .ssi-tip-arrow {
  top: -9px; }

.tip-msg-outer .tip-message {
  font-size: 12px;
  line-height: normal;
  text-align: center;
  color: #3b3b3b;
  font-family: 'droid_sansregular';
  padding-bottom: 10px; }

.tip-msg-outer {
  min-width: 201px; }

.tip-btns ul.tip-btn-list {
  text-align: center;
  margin: 0px !important; }

.tip-btns ul.tip-btn-list li {
  display: inline-block;
  margin: 0px 5px; }

.tip-btns ul.tip-btn-list li.btn-delete a {
  font-size: 12px;
  line-height: normal;
  color: #fff;
  font-family: 'droid_sansregular';
  background: #ff1919;
  height: 25px;
  line-height: 25px;
  padding: 0px 10px;
  display: block;
  text-decoration: none;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

.tip-btns ul.tip-btn-list li.btn-cancel a {
  font-size: 12px;
  line-height: normal;
  color: #fff;
  font-family: 'droid_sansregular';
  background: #777777;
  height: 25px;
  line-height: 25px;
  padding: 0px 20px;
  display: block;
  text-decoration: none;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px; }

section .list_active_msg div.rply_icons {
  display: block; }

.userSuccMSG {
  background: url(../images/userSuccMSGOverbg.png) repeat;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  position: fixed;
  left: 40%;
  top: 45%;
  width: auto;
  min-width: 418px;
  line-height: 38px;
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-family: 'droid_sansregular';
  z-index: 1000000;
  display: none;
  padding: 20px 40px; }

.inpt_erors {
  float: left;
  width: 100%; }

.inpt_erors li {
  list-style-type: none; }

ul#errorsMsgUl {
  margin-left: 16px;
  margin-top: 10px; }

.inpt_erors li.heading {
  font-size: 14px !important;
  font-family: 'droid_sansregular';
  color: red !important; }

.inpt_erors li.error_txt ul li {
  font-size: 12px !important;
  color: red !important;
  font-family: 'droid_sansregular';
  clear: both;
  margin-left: 10px;
  list-style-type: circle; }

.hidden-fld {
  display: none; }

.w475 {
  width: 475px !important; }

.w195 {
  width: 195px; }

#other_users_dialog {
  width: 130px; }

#other_users_dialog p {
  padding-left: 14px; }

#other_users_dialog p:first-child {
  margin-top: 12px; }

.list_active_msg .rply_icons {
  display: block !important; }

.inline {
  display: inline-block !important; }

.activated {
  background-color: #0e1f5b;
  border-radius: 20px;
  color: red;
  height: 12px;
  width: 12px;
  cursor: pointer; }

.deactivated {
  background-color: #ccc;
  border-radius: 20px;
  color: red;
  height: 12px;
  width: 12px;
  cursor: pointer; }

/*
Version: 3.5.1 Timestamp: Tue Jul 22 18:58:56 EDT 2014
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  background: none repeat scroll 0 0 #f8f8f8; }

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */ }

.select2-container .select2-choice {
  -moz-user-select: none;
  background-clip: padding-box;
  background-color: #f8f8f8;
  border: 0 solid #aaa;
  border-radius: 4px;
  box-shadow: 1px 1px 5px -1px #dddddd inset !important;
  color: #c9c9c8;
  display: block;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  padding: 0 0 0 8px;
  position: relative;
  text-decoration: none;
  white-space: nowrap; }

html[dir="rtl"] .select2-container .select2-choice {
  padding: 0 8px 0 0; }

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%); }

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px; }

.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto; }

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0; }

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 30px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url("select2.png") right top no-repeat;
  cursor: pointer;
  outline: 0;
  z-index: 9999;
  -webkit-appearance: none; }

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block; }

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer; }

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15); }

.select2-drop-active {
  border: 0px solid #5897fb;
  border-top: none; }

.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 0px solid #5897fb; }

.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto; }

.select2-drop-auto-width .select2-search {
  padding-top: 4px; }

.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 23px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  /*
    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);*/ }

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid #aaa;
  border-radius: 4px 0 0 4px; }

.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/drop_Arrow.png") no-repeat 0 17px; }

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  background-position: 2px 1px; }

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap; }

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url("select2.png") no-repeat 100% -22px;
  background: url("select2.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url("select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; }

html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #fff url("select2.png") no-repeat -37px -22px;
  background: url("select2.png") no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url("select2.png") no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; }

.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px; }

.select2-search input.select2-active {
  background: #fff url("select2-spinner.gif") no-repeat 100%;
  background: url("select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url("select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0; }

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 0px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.select2-dropdown-open .select2-choice {
  background-color: #f8f8f8;
  border: 0 solid #aaa;
  border-radius: 4px;
  box-shadow: 1px 1px 5px -1px #dddddd inset !important;
  color: #666; }

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 0px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%); }

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none; }

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none; }

.select2-dropdown-open .select2-choice .select2-arrow b {
  background: url("../images/drop_Arrow.png") no-repeat 0 17px; }

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px; }

.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: transparent; }

html[dir="rtl"] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px; }

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0; }

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
  background: #fff;
  border-bottom: 1px solid #e6e8ea; }

.select2-results li:last-child {
  border-bottom: 0px; }

.select2-results li.select2-no-results:hover {
  background: #fff;
  color: #bbb; }

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold; }

.select2-result-label {
  padding: 6px 7px 6px 0 !important;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.select2-results-dept-1 .select2-result-label {
  padding-left: 20px; }

.select2-results-dept-2 .select2-result-label {
  padding-left: 40px; }

.select2-results-dept-3 .select2-result-label {
  padding-left: 60px; }

.select2-results-dept-4 .select2-result-label {
  padding-left: 80px; }

.select2-results-dept-5 .select2-result-label {
  padding-left: 100px; }

.select2-results-dept-6 .select2-result-label {
  padding-left: 110px; }

.select2-results-dept-7 .select2-result-label {
  padding-left: 120px; }

.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff; }

.select2-results li em {
  background: #ffffff;
  font-style: normal; }

.select2-results .select2-highlighted em {
  background: transparent; }

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000; }

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px; }

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-selected {
  display: none; }

.select2-more-results.select2-active {
  background: #f4f4f4 url("select2-spinner.gif") no-repeat 100%; }

.select2-results .select2-ajax-error {
  background: rgba(255, 50, 50, 0.2); }

.select2-more-results {
  background: #f4f4f4;
  display: list-item; }

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default; }

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0; }

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none; }

/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #f8f8f8;
  border: 0 solid #aaa;
  border-radius: 4px;
  /*box-shadow: 1px 1px 5px -1px #dddddd inset !important;*/ }

html[dir="rtl"] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px; }

.select2-locked {
  padding: 3px 5px 3px 5px !important; }

.select2-container-multi .select2-choices {
  min-height: 26px; }

.select2-container-multi.select2-container-active .select2-choices {
  border: 0px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none; }

html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right; }

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 0px;
  margin: 1px 0;
  font: 18px "droid_sansregular" !important;
  color: #666;
  outline: 0;
  border: 0;
  font-weight: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #F8F8F8;
  width: 234px !important; }

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: url("select2-spinner.gif") no-repeat 100% !important; }

.select2-default {
  color: #c9c9c8 !important; }

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(to top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); }

html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default; }

.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #F8F8F8; }

.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url("select2.png") right top no-repeat; }

html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px; }

.select2-container-multi .select2-search-choice-close {
  left: 3px; }

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px; }

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px; }

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none; }

/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline; }

.select2-offscreen, .select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important; }

.select2-display-none {
  display: none; }

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll; }

/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url("select2x2.png") !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important; }
  .select2-search input {
    background-position: 100% -21px !important; } }

.select2-results .select2-highlighted {
  background: transparent;
  color: #333; }

.select2-results .select2-result-label {
  padding: 0px 7px 0px 0px; }

.select2-results li {
  display: block;
  list-style-type: none;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0px !important; }

.select2-results li.select2-highlighted {
  background: #efefef; }

.select2-results li div.listing {
  border-bottom: #e6e7e8 solid 1px;
  padding: 12px 0px 8px 0px; }

.select2-results li div.listing img {
  float: left;
  margin-right: 12px; }

.select2-results li div.listing p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 17px;
  margin-bottom: 15px; }

.select2-drop {
  width: 100%;
  margin-top: 1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); }

.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15); }

.select2-drop-active {
  border: 1px solid #d7d7d7;
  border-top: none; }

.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #d7d7d7; }

.select2-drop-auto-width {
  border-top: 1px solid #d7d7d7;
  width: auto; }

.select2-drop-auto-width .select2-search {
  padding-top: 4px; }

.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 0px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: transparent;
  background-image: none; }

.select2-container-multi.select2-container-active .select2-choices {
  border: 0px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 0px transparent;
  box-shadow: 0 0 0px transparent; }

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 18px 3px 4px;
  margin-right: 5px;
  position: relative;
  line-height: 13px;
  font-size: 12px;
  font-weight: normal;
  color: #6d6f75;
  cursor: default;
  border: 0px solid #aaaaaa;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 0px, transparent;
  box-shadow: 0 0 0px, transparent;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #ecf0f1;
  background-image: none !important; }

.select2-search-choice div span {
  font-size: 12px;
  font-weight: normal;
  color: #333; }

.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-ajax-error, .select2-results .select2-selection-limit {
  background: #ffffff;
  display: list-item;
  padding-left: 5px;
  font-size: 13px;
  color: #bbb; }

.select2-container-multi .select2-search-choice-close {
  right: 3px;
  left: auto;
  background-color: #d2dbe0;
  border-radius: 50px;
  font: 13px "droid_sansregular";
  color: #6d6f75;
  padding-left: 2px; }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #ffffff !important;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 0px !important; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../images/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
/* Below two lines are commented because they are causing page to move to top */
.fancybox-lock {
  /*overflow: hidden !important;*/
  width: auto; }

.fancybox-lock body {
  /*overflow: hidden !important;*/ }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url("../images/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

.xdsoft_datetimepicker {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  padding-left: 0;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none; }

.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: transparent;
  border: none; }

/*For IE8 or lower*/
.xdsoft_datetimepicker button {
  border: none !important; }

.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

.xdsoft_noselect::selection {
  background: transparent; }

.xdsoft_noselect::-moz-selection {
  background: transparent; }

.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none; }

.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker {
  display: none; }

.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block; }

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px; }

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px; }

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0; }

.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px; }

.xdsoft_datetimepicker .xdsoft_mounthpicker {
  position: relative;
  text-align: center; }

.xdsoft_datetimepicker .xdsoft_label i,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); }

.xdsoft_datetimepicker .xdsoft_label i {
  opacity: 0.5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle; }

.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0; }

.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px; }

.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0; }

.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0 none;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px; }

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0; }

.xdsoft_datetimepicker .xdsoft_today_button:hover,
.xdsoft_datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker .xdsoft_prev:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }

.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer; }

.xdsoft_datetimepicker .xdsoft_label:hover > span {
  text-decoration: underline; }

.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1.0; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important; }

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #33aaff;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700; }

.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right; }

.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both; }

.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px; }

.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%; }

.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px; }

.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px; }

.xdsoft_datetimepicker .xdsoft_calendar td, .xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px; }

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%; }

.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #33aaff; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #33aaff;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; }

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background: #33aaff !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important; }

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit	!important;
  background: inherit !important;
  box-shadow: inherit !important; }

.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default; }

.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px; }

.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important; }

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important; }

.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc; }

.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px; }

.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer; }

.xdsoft_scroller_box {
  position: relative; }

.xdsoft_datetimepicker.xdsoft_dark {
  box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
  background: #000;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #999; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
  border: 1px solid #333;
  background: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #000;
  background: #007fff; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #cc5500;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0e0e0e; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: #cc5500; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #cc5500;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000 !important;
  background: #007fff !important; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  color: #666; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
  color: #333 !important; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
  color: #111 !important; }

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
  color: #555 !important; }

.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333; }

.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller {
  background: #333 !important; }

.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  border: 1px solid #dddddd !important;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px; }

.xdsoft_datetimepicker .blue-gradient-button {
  font-family: "museo-sans", "Book Antiqua", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #82878c;
  height: 28px;
  position: relative;
  padding: 4px 17px 4px 33px;
  border: 1px solid #d7d8da;
  background: -moz-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(73%, #f4f8fa));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fff 0%, #f4f8fa 73%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fff 0%, #f4f8fa 73%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f4f8fa',GradientType=0 );
  /* IE6-9 */ }

.xdsoft_datetimepicker .blue-gradient-button:hover, .xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover span, .xdsoft_datetimepicker .blue-gradient-button:focus span {
  color: #454551;
  background: -moz-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f8fa), color-stop(73%, #FFF));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f4f8fa 0%, #FFF 73%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f8fa', endColorstr='#FFF',GradientType=0 );
  /* IE6-9 */ }

/*
Errno::ENOENT: No such file or directory @ rb_sysopen - styles.scss

Backtrace:
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:482:in `read'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:482:in `update_stylesheet'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:209:in `each'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:209:in `update_stylesheets'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin/compiler.rb:293:in `watch'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/plugin.rb:108:in `method_missing'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/exec/sass_scss.rb:381:in `watch_or_update'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/exec/sass_scss.rb:51:in `process_result'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/exec/base.rb:52:in `parse'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/lib/sass/exec/base.rb:19:in `parse!'
C:/Ruby22/lib/ruby/gems/2.2.0/gems/sass-3.4.13/bin/sass:13:in `<top (required)>'
C:/Ruby22/bin/sass:23:in `load'
C:/Ruby22/bin/sass:23:in `<main>'
*/
@font-face {
  font-family: 'droid_sansregular';
  src: url("font/droidsans.eot");
  src: url("font/droidsans.eot?#iefix") format("embedded-opentype"), url("font/droidsans.woff2") format("woff2"), url("font/droidsans.woff") format("woff"), url("font/droidsans.ttf") format("truetype"), url("font/droidsans.svg#droid_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'droid_sansbold';
  src: url("font/droidsans-bold.eot");
  src: url("font/droidsans-bold.eot?#iefix") format("embedded-opentype"), url("font/droidsans-bold.woff2") format("woff2"), url("font/droidsans-bold.woff") format("woff"), url("font/droidsans-bold.ttf") format("truetype"), url("font/droidsans-bold.svg#droid_sansbold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open_sansregular';
  src: url("font/opensans-regular-webfont.eot");
  src: url("font/opensans-regular-webfont.eot?#iefix") format("embedded-opentype"), url("font/opensans-regular-webfont.woff") format("woff"), url("font/opensans-regular-webfont.ttf") format("truetype"), url("font/opensans-regular-webfont.svg#open_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/* DEMO 3 */
.w230 {
  width: 230px !important; }

.mL10 {
  margin-left: 10px !important; }

.bdr_none {
  border: none !important; }

.wrapper-dropdown-3:focus .dropdown {
  opacity: 1;
  pointer-events: auto; }

.wrapper-dropdown-3 {
  /* Size and position */
  position: relative;
  width: 188px;
  margin: 0 auto;
  padding: 10px;
  /* Styles */
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd;
  box-shadow: inset 1px 1px 5px -1px #dddddd;
  background: #f8f8f8;
  cursor: pointer;
  outline: none;
  /* Font settings */
  font: 18px "droid_sansregular";
  color: #cbcbcb;
  border-radius: 4px; }

.wrapper-dropdown-3:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #6d6f75 transparent; }

.wrapper-dropdown-3 .dropdown {
  /* Size & position */
  position: absolute;
  top: 140%;
  left: 0;
  right: 0;
  /* Styles */
  background: white;
  border-radius: inherit;
  border: 1px solid rgba(0, 0, 0, 0.17);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-weight: normal;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  list-style: none;
  z-index: 9999;
  /* Hiding */
  opacity: 0;
  pointer-events: none;
  margin: 0px;
  margin-top: -16px !important; }

/*.wrapper-dropdown-3 .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.wrapper-dropdown-3 .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}*/
.wrapper-dropdown-3 .dropdown li {
  float: none;
  list-style-type: none;
  background-color: #ffffff;
  margin: 0px;
  width: auto;
  border: none; }

.wrapper-dropdown-3 .dropdown li:hover {
  border: none; }

.wrapper-dropdown-3 .dropdown li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #e0e4e4;
  border-bottom: 1px solid #e6e8ea;
  box-shadow: inset 0 1px 0 white;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-align: left; }

.wrapper-dropdown-3 .dropdown li i {
  float: right;
  color: inherit; }

.wrapper-dropdown-3 .dropdown li:first-of-type a {
  border-radius: 7px 7px 0 0; }

.wrapper-dropdown-3 .dropdown li:last-of-type a {
  border: none;
  border-radius: 0 0 7px 7px; }

/* Hover state */
.wrapper-dropdown-3 .dropdown li:hover a {
  background: #f2f2f2; }

/* Active state */
.wrapper-dropdown-3.active .dropdown {
  opacity: 1;
  pointer-events: auto; }

/* No CSS3 support */
.no-opacity .wrapper-dropdown-3 .dropdown,
.no-pointerevents .wrapper-dropdown-3 .dropdown {
  display: none;
  opacity: 1;
  /* If opacity support but no pointer-events support */
  pointer-events: auto;
  /* If pointer-events support but no pointer-events support */ }

.no-opacity .wrapper-dropdown-3.active .dropdown,
.no-pointerevents .wrapper-dropdown-3.active .dropdown {
  display: block; }

.wrapper-dropdown-4, .wrapper-dropdown-5 {
  /* Size and position */
  position: relative;
  width: 254px;
  margin: 0 auto;
  padding: 8px 10px 9px 10px;
  /* Styles */
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd;
  box-shadow: inset 1px 1px 5px -1px #dddddd;
  background: #f8f8f8;
  cursor: pointer;
  outline: none;
  /* Font settings */
  font: 18px "open_sansregular";
  color: #cbcbcb;
  border-radius: 4px;
  margin-top: 21px;
  margin-right: 15px; }

.wrapper-dropdown-4 input[type="text"], .wrapper-dropdown-5 input[type="text"] {
  background-color: transparent !important;
  outline: none;
  border: none;
  line-height: 25px;
  width: 235px;
  font: 18px "open_sansregular";
  color: #c9c9c8; }

.wrapper-dropdown-5 {
  width: 775px;
  float: left; }

.wrapper-dropdown-5 input[type="text"] {
  background-color: transparent !important;
  outline: none;
  border: none;
  line-height: 25px;
  width: 235px;
  font: 18px "open_sansregular";
  color: #c9c9c8; }

::-webkit-input-placeholder {
  font: 18px "open_sansregular";
  color: #c9c9c8; }

:-moz-placeholder {
  /* Firefox 18- */
  font: 18px "open_sansregular";
  color: #c9c9c8; }

::-moz-placeholder {
  /* Firefox 19+ */
  font: 18px "open_sansregular";
  color: #c9c9c8; }

:-ms-input-placeholder {
  font: 18px "open_sansregular";
  color: #c9c9c8; }

input[type=checkbox].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: 100px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

input[type=checkbox].css-checkbox + label.css-label {
  padding-left: 40px;
  height: 24px;
  display: inline-block;
  line-height: 30px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
  margin: 23px;
  float: left;
  color: #6d6f75; }

input[type=checkbox].css-checkbox:checked + label.css-label {
  background-position: 0 -24px; }

label.css-label {
  background-image: url(../images/check_img.png);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.icons {
  background-image: url("../images/sprite.png");
  background-repeat: no-repeat; }

.mR0 {
  margin-right: 0px !important; }

.m00 {
  margin: 0px !important; }

.mb21 {
  margin-bottom: 21px !important; }

.mb3 {
  margin-bottom: 3px !important; }

.mt0 {
  margin-top: 0px !important; }

.mt3 {
  margin-top: 3px !important; }

.mt4 {
  margin-top: 4px !important; }

.mt7 {
  margin-top: 7px !important; }

.mt8 {
  margin-top: 8px !important; }

.mt9 {
  margin-top: 9px !important; }

.mt12 {
  margin-top: 12px !important; }

.mt13 {
  margin-top: 13px !important; }

.mt17 {
  margin-top: 17px !important; }

.mt24 {
  margin-top: 24px !important; }

.mt42 {
  margin-top: 42px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt60 {
  margin-top: 60px !important; }

.mt87 {
  margin-top: 87px !important; }

.mL-1 {
  margin-left: -1px !important; }

.mL0 {
  margin-left: 0px !important; }

.mL4 {
  margin-left: 4px !important; }

.mL5 {
  margin-left: 5px !important; }

.mL20 {
  margin-left: 20px !important; }

.mL33 {
  margin-left: 33px !important; }

.mL35 {
  margin-left: 35px !important; }

.mL52 {
  margin-left: 52px !important; }

.mL55 {
  margin-left: 55px !important; }

.mL100 {
  margin-left: 100px !important; }

.mL172 {
  margin-left: 172px !important; }

.mb8 {
  margin-bottom: 8px; }

.mb10 {
  margin-bottom: 10px; }

.mb15 {
  margin-bottom: 15px !important; }

.mb19 {
  margin-bottom: 19px; }

.mb18 {
  margin-bottom: 18px; }

.mb20 {
  margin-bottom: 20px; }

.mb22 {
  margin-bottom: 22px !important; }

.mb23 {
  margin-bottom: 23px !important; }

.mb25 {
  margin-bottom: 25px; }

.mb28 {
  margin-bottom: 28px; }

.mb30 {
  margin-bottom: 30px !important; }

.mb33 {
  margin-bottom: 33px !important; }

.mb44 {
  margin-bottom: 44px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mr7 {
  margin-right: 7px !important; }

.mr10 {
  margin-right: 10px !important; }

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

.mr25 {
  margin-right: 25px !important; }

.mr35 {
  margin-right: 35px !important; }

.mr40 {
  margin-right: 40px !important; }

.pt0 {
  padding-top: 0px !important; }

.pt4 {
  padding-top: 4px !important; }

.pt8 {
  padding-top: 8px !important; }

.pt11 {
  padding-top: 11px !important; }

.pt13 {
  padding-top: 13px !important; }

.pt14 {
  padding-top: 14px !important; }

.pt17 {
  padding-top: 17px !important; }

.pt20 {
  padding-top: 20px !important; }

.pt21 {
  padding-top: 21px !important; }

.pt37 {
  padding-top: 37px !important; }

.pt43 {
  padding-top: 43px !important; }

.pt60 {
  padding-top: 60px !important; }

.pb9 {
  padding-bottom: 9px !important; }

.pb5 {
  padding-bottom: 5px !important; }

.pb13 {
  padding-bottom: 13px !important; }

.pb14 {
  padding-bottom: 14px !important; }

.pb18 {
  padding-bottom: 18px !important; }

.pb23 {
  padding-bottom: 23px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pL0 {
  padding-left: 0px !important; }

.pL7 {
  padding-left: 7px !important; }

.pL15 {
  padding-left: 15px !important; }

.pL16 {
  padding-left: 16px !important; }

.pL17 {
  padding-left: 17px !important; }

.pL20 {
  padding-left: 20px !important; }

.pL22 {
  padding-left: 22px !important; }

.pL24 {
  padding-left: 24px !important; }

.pL25 {
  padding-left: 25px !important; }

.pL27 {
  padding-left: 27px !important; }

.pL28 {
  padding-left: 28px !important; }

.pL40 {
  padding-left: 40px !important; }

.pL45 {
  padding-left: 45px !important; }

.pL47 {
  padding-left: 47px !important; }

.pL50 {
  padding-left: 50px !important; }

.pL55 {
  padding-left: 55px !important; }

.pL60 {
  padding-left: 60px !important; }

.pL69 {
  padding-left: 69px !important; }

.pR0 {
  padding-right: 0px !important; }

.pR17 {
  padding-right: 17px !important; }

.pR40 {
  padding-right: 40px !important; }

.pL24 {
  padding-right: 24px !important; }

.pR50 {
  padding-right: 50px !important; }

.pR55 {
  padding-right: 55px !important; }

.pb0 {
  padding-bottom: 0px !important; }

.pb20 {
  padding-bottom: 20px !important; }

.pb25 {
  padding-bottom: 25px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pb38 {
  padding-bottom: 38px !important; }

.pb50 {
  padding-bottom: 50px !important; }

.w60_5p {
  width: 60.5% !important; }

.w100p {
  width: 100% !important; }

.w38 {
  width: 38px !important; }

.w68 {
  width: 68px !important; }

.w71 {
  width: 71px !important; }

.w93 {
  width: 93px !important; }

.w97 {
  width: 97px !important; }

.w100 {
  width: 100px !important; }

.w106 {
  width: 106px !important; }

.w110 {
  width: 110px !important; }

.w112 {
  width: 112px !important; }

.w113 {
  width: 113px !important; }

.w117 {
  width: 117px !important; }

.w120 {
  width: 120px !important; }

.w130 {
  width: 130px !important; }

.w134 {
  width: 134px !important; }

.w140 {
  width: 140px !important; }

.w144 {
  width: 144px !important; }

.w145 {
  width: 145px !important; }

.w147 {
  width: 147px !important; }

.w150 {
  width: 150px !important; }

.w152 {
  width: 152px !important; }

.w153 {
  width: 153px !important; }

.w156 {
  width: 156px !important; }

.w161 {
  width: 161px !important; }

.w165 {
  width: 165px !important; }

.w170 {
  width: 170px !important; }

.w172 {
  width: 172px !important; }

.w175 {
  width: 175px !important; }

.w180 {
  width: 180px !important; }

.w200 {
  width: 200px !important; }

.w210 {
  width: 210px !important; }

.w220 {
  width: 220px !important; }

.w223 {
  width: 223px !important; }

.w240 {
  width: 240px !important; }

.w248 {
  width: 248px !important; }

.w250 {
  width: 250px !important; }

.w280 {
  width: 280px !important; }

.w285 {
  width: 285px !important; }

.w305 {
  width: 305px !important; }

.w310 {
  width: 310px !important; }

.w317 {
  width: 317px !important; }

.w337 {
  width: 337px !important; }

.w345 {
  width: 345px !important; }

.w350 {
  width: 350px !important; }

.w360 {
  width: 360px !important; }

.w368 {
  width: 368px !important; }

.w373 {
  width: 373px !important; }

.w375 {
  width: 375px !important; }

.w430 {
  width: 430px !important; }

.w480 {
  width: 480px !important; }

.w500 {
  width: 500px !important; }

.w560 {
  width: 560px !important; }

.w800 {
  width: 810px !important; }

.w1245 {
  width: 1245px !important; }

.hgt43 {
  height: 43px; }

.r20 {
  right: 20px !important; }

.r34 {
  right: 34px !important; }

.no_bg, section .auto_users ul li {
  background-color: #f8f8f8 !important; }

.no-bdr {
  border: 0px !important; }

.brd_t {
  border-top: #e6e7e8 solid 1px; }

.bdr_bottom, .bulk_popup h1, .droid_heading {
  border-bottom: #e6e7e8 solid 1px; }

.txt_16_b, .wrapper-dropdown-3 .dropdown li a, section .tab_panel ul li.tab a, section .data_listing_header {
  font: 16px "droid_sansbold";
  color: #323641; }

.txt_16_r, section .tab_panel ul li a.view, section .data_listing ul li, .bulk_popup ul li, .create_inpt, .create_area {
  font: 16px "droid_sansregular";
  color: #323641; }

.txt_18_b, .tab_gen_info article.left p, .profile_details .prsn_info label, .contact_info .prsn_info label {
  font: 18px "droid_sansbold";
  color: #323641; }

.txt_18_r {
  font: 18px "droid_sansregular" !important;
  color: #323641 !important; }

.txt_22_b, .tab_gen_info .sub_heading {
  font: 22px "droid_sansbold";
  color: #323641; }

.txt_24_r, .tab_gen_info h3 {
  font: 24px "droid_sansregular";
  color: #323641; }

.bulk_popup h1, .droid_heading {
  font: 28px "Museo Slab 900";
  color: #403f3c;
  text-align: left; }

.bulk_popup h1 {
  font: 28px/46px "Museo Slab 900" !important; }

.Lht19 {
  line-height: 19px !important; }

.fltL {
  float: left !important; }

.fltR {
  float: right !important; }

h1, h2, h3, h4, ul, li, p {
  margin: 0px;
  padding: 0px; }

.clr {
  clear: both; }

a {
  text-decoration: none;
  color: #323641; }

body {
  font: 18px "droid_sansregular";
  color: #403f3c;
  margin: 0px;
  background-color: #f6f8f3; }

.container {
  width: 100%;
  background-color: #f6f8f3;
  height: 500px; }

header h1 {
  font: 22px "droid_sansbold";
  color: #403f3c;
  text-align: center;
  line-height: 50px; }

header .logo {
  width: 277px;
  height: 56px;
  background: url(../images/logo.png) no-repeat -13px;
  float: left;
  margin: 20px 0 0 0; }

header section {
  height: 105px;
  background: #383b44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #383b44), color-stop(100%, #2e2e33));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #383b44 0%, #2e2e33 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$light_gray', endColorstr='$dark_gray',GradientType=0 );
  /* IE6-9 */ }

header section div.bg {
  background: url(../images/logo_bg.png) no-repeat left;
  width: 100%;
  height: 103px; }

header .wrapper {
  width: 1305px;
  margin: auto; }

header ul {
  float: right; }

header ul li {
  list-style-type: none;
  display: inline-block;
  margin: 24px 15px; }

header ul li a {
  font: 14px "droid_sansbold";
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  text-transform: uppercase; }

header section.notfy-panel {
  padding: 10px;
  box-shadow: 0px 1px 2px #f2f2f2;
  background: #ffffff;
  height: auto; }

header section.notfy-panel div.notfy-inner {
  width: 1305px;
  margin: auto;
  position: relative; }

header section.notfy-panel .user_info {
  float: left;
  margin-right: 44px; }

header section.notfy-panel p.thumb {
  float: left;
  margin-right: 10px; }

header section.notfy-panel p.thumb img {
  border-radius: 100px;
  border: #ffffff 5px solid;
  box-shadow: 0px 0px 2px #929292;
  width: 44px;
  height: 44px; }

header section.notfy-panel p.welcome-txt {
  float: left;
  font: 14px "droid_sansbold";
  color: #323641;
  padding-top: 12px; }

header section.notfy-panel p.welcome-txt span {
  font: 12px "droid_sansregular";
  color: #6d6f75; }

header section.notfy-panel p.welcome-txt span.name {
  font: 14px "droid_sansbold";
  display: block;
  color: #323641; }

header section.notfy-panel p.welcome-txt span.name a {
  float: left;
  margin-right: 5px; }

header section.notfy-panel p.welcome-txt span.name i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4.5px 0 4.5px;
  float: left;
  border-color: #323641 transparent transparent transparent;
  margin-top: 6px; }

header .search_input {
  width: 307px;
  height: 31px;
  float: left;
  margin-top: 9px;
  position: relative; }

header .search_input input {
  width: 280px;
  height: 31px;
  border: #eaeaea 2px solid;
  border-radius: 50px;
  outline: none;
  padding: 0px 15px 0 38px;
  font: 13px "droid_sansregular";
  color: #6d6f75; }

header .search_input input::-webkit-input-placeholder {
  font: 13px "droid_sansregular";
  color: #6d6f75; }

header i.search_bg {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 11px;
  left: 15px; }

header .search_input a {
  font: 14px "droid_sansbold";
  color: #ff7575;
  display: block;
  position: absolute;
  top: 6px;
  right: -15px;
  border-left: 2px #eaeaea solid;
  padding: 3px 0 3px 4px; }

header .msg_panel {
  float: right;
  height: 30px;
  margin-top: 12px;
  padding-top: 4px; }

header .msg_panel a.notify i {
  display: block;
  width: 15px;
  height: 15px;
  float: left;
  background-position: 0 -21px;
  margin: 3px 10px 0 0; }

header .msg_panel a.notify {
  font: 13px "droid_sansregular";
  color: #323641;
  float: left;
  margin-right: 28px; }

header .msg_panel a.notify span {
  font: 16px "droid_sansbold";
  color: #ff7575; }

header .msg_panel a.notify:hover {
  color: #ff7575; }

header .msg_panel a.notify:hover i {
  background-position: -19px -21px; }

header .msg_panel a.notify i.alrt {
  display: block;
  width: 15px;
  height: 15px;
  float: left;
  background-position: -40px -156px;
  margin: 3px 10px 0 0; }

header .msg_panel a.notify:hover i.alrt {
  background-position: -56px -156px; }

header .msg_panel a.msgs i {
  display: block;
  width: 17px;
  height: 12px;
  float: left;
  background-position: 0 -40px;
  margin: 5px 10px 0 0; }

header .msg_panel a.msgs:hover i {
  background-position: -19px -40px; }

header .msg_panel a.calendar i {
  display: block;
  width: 16px;
  height: 14px;
  float: left;
  background-position: 0 -56px;
  margin: 1px 10px 0 0; }

header .msg_panel a.calendar:hover i {
  background-position: -19px -56px; }

header .arrow_box {
  position: absolute;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  width: 435px;
  top: 45px;
  right: 90px;
  z-index: 9999;
  box-shadow: 0px 1px 2px #f2f2f2; }

header .arrow_box:after, header .arrow_box:before {
  bottom: 100%;
  left: 90%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

header .arrow_box:after {
  border-color: rgba(248, 248, 248, 0);
  border-bottom-color: #f8f8f8;
  border-width: 10px;
  margin-left: -10px; }

header .arrow_box:before {
  border-color: rgba(238, 238, 238, 0);
  border-bottom-color: #eeeeee;
  border-width: 11px;
  margin-left: -11px; }

header .arrow_box ul {
  margin: 0px;
  width: 100%; }

header .arrow_box ul li {
  display: block;
  list-style-type: none;
  background-color: #efefef;
  padding-left: 20px;
  padding-right: 15px;
  margin: 0px !important; }

header .arrow_box ul li div.listing {
  border-bottom: #e6e7e8 solid 1px;
  padding: 12px 0px 8px 0px; }

header .arrow_box ul li div.listing img {
  float: left;
  margin-right: 12px; }

header .arrow_box ul li div.listing p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 17px; }

header .arrow_box ul li div.listing p span a {
  text-decoration: none;
  color: #6d6f75;
  margin: 0px;
  padding: 0px;
  line-height: 16px;
  font: 14px "droid_sansbold" !important;
  text-transform: none; }

header .arrow_box ul li div.listing p span {
  font: 14px "droid_sansbold"; }

header .msgs_txt_link {
  height: 42px;
  padding: 0px 17px; }

header .msgs_txt_link a.all_msgs {
  float: left;
  font: 14px "droid_sansbold";
  color: #ff7575;
  text-align: left;
  text-decoration: none; }

header .msgs_txt_link a.comp_msgs {
  float: right;
  font: 14px "droid_sansbold";
  color: #ff7575;
  text-align: left;
  text-decoration: none; }

header .msgs_txt_link a.comp_msgs i {
  width: 18px;
  height: 19px;
  float: right;
  background-position: 0 -258px;
  margin-left: 5px;
  margin-top: -1px; }

section .breadcrumb {
  width: 1305px;
  margin: auto; }

section .breadcrumb ul {
  float: left; }

section .breadcrumb ul li {
  float: left;
  list-style-type: none; }

section .breadcrumb ul li.arrow {
  padding-top: 19px;
  margin-right: 17px; }

section .breadcrumb ul li a {
  font: 12px "droid_sansregular";
  color: #999999;
  line-height: 57px;
  padding: 0 14px 0 0; }

section .breadcrumb ul li i {
  width: 8px;
  height: 18px;
  display: block;
  background-position: 0 -156px; }

section .msgs_box {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 1px 2px #f2f2f2;
  background: #ffffff;
  width: 1305px;
  margin: auto;
  margin-bottom: 30px; }

section .msgs_links {
  border-bottom: #e6e7e8 solid 1px;
  padding: 0 20px; }

section .msgs_links h1 {
  font: 32px "Museo Slab 900";
  color: #403f3c;
  text-align: left;
  float: left;
  padding-bottom: 8px; }

section .msgs_links ul {
  float: right;
  margin-top: 8px; }

section .msgs_links ul li {
  display: inline;
  margin-left: 38px; }

section .msgs_links ul li a {
  font: 13px "droid_sansregular";
  color: #323641; }

section .msgs_links ul li a:hover {
  color: #ff7575; }

section .msgs_links li a span {
  font: 16px "droid_sansbold";
  color: #ff7575; }

section .msgs_links li a i.arrow_msg {
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #6d6f75;
  display: inline-block;
  margin-left: 6px; }

section .msgs_links li a:hover i.arrow_msg {
  border-color: transparent transparent transparent #ff7575; }

section .drop_downs {
  float: left;
  width: 100%;
  border-bottom: #e6e7e8 solid 1px; }

section .wrapper-demo {
  float: left;
  margin: 22px 0 0 22px; }

section .search_msg {
  outline: none;
  float: right; }

section .search_msg i {
  width: 16px;
  height: 16px;
  display: block;
  background-position: -16px -1px;
  float: right;
  margin-top: 5px; }

section .copmose_panel {
  width: 100%; }

section .copmose_panel a.del_btn {
  display: block;
  float: left;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 40px 9px 20px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 0;
  line-height: 21px; }

section .copmose_panel a.del_btn i {
  width: 21px;
  height: 21px;
  background-position: 0px -101px;
  display: block;
  float: left;
  margin-right: 9px; }

section .copmose_panel a.compse_btn {
  display: block;
  float: right;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 28px 9px 28px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 21px 0;
  line-height: 21px; }

section .listing_bg {
  background-color: #ffffff !important;
  box-shadow: 0px 1px 2px #f2f2f2; }

section .user_listing {
  background-color: #efefef;
  margin: auto;
  width: 1265px;
  padding: 21px;
  position: relative;
  margin-bottom: 10px; }

section .user_listing i.attachment {
  width: 29px;
  height: 26px;
  background-position: 0px -127px;
  position: absolute;
  left: 20px;
  top: 57px; }

section .user_listing p.user_img {
  float: left;
  padding-left: 3px;
  margin-right: 17px; }

section .user_listing div.user_Data {
  float: left;
  width: 810px; }

section .user_listing div.rply_icons {
  width: 120px;
  height: 30px;
  position: absolute;
  bottom: 30px;
  right: 9px;
  display: none; }

section .user_listing:hover div.rply_icons {
  display: block; }

section .user_listing div.rply_icons i.reply {
  width: 30px;
  height: 21px;
  background-position: -40px 0px;
  float: left;
  margin-right: 15px; }

section .user_listing div.rply_icons i.reply:hover {
  cursor: pointer; }

section .reply_box {
  position: absolute;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  width: 115px;
  height: 100px;
  top: -110px;
  left: -51px;
  z-index: 9999;
  box-shadow: 1px 1px 0px #dddddd;
  border-radius: 5px;
  display: none; }

section .reply_box:after, section .arrow_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

section .reply_box:after {
  border-color: rgba(248, 248, 248, 0);
  border-top-color: #f8f8f8;
  border-width: 10px;
  margin-left: -10px; }

section .reply_box:before {
  border-color: rgba(238, 238, 238, 0);
  border-top-color: #eeeeee;
  border-width: 11px;
  margin-left: -11px; }

section .reply_box ul {
  margin: 0 8px;
  padding: 0px; }

section .reply_box ul li {
  list-style-type: none;
  border-bottom: #e6e7e8 solid 1px;
  padding: 5px 10px 7px 20px; }

section .reply_box ul li a {
  font: 14px "droid_sansbold";
  color: #6d6f75;
  text-decoration: none; }

section .user_listing div.rply_icons i.del {
  width: 20px;
  height: 27px;
  background-position: -40px -28px;
  float: left;
  margin-right: 15px; }

section .user_listing div.rply_icons i.del:hover {
  cursor: pointer; }

section .user_listing div.rply_icons i.print {
  width: 25px;
  height: 22px;
  background-position: -40px -60px;
  float: left;
  margin-right: 15px; }

section .user_listing div.rply_icons i.print:hover {
  cursor: pointer; }

section .user_Data h3 {
  font: 16px "droid_sansbold";
  color: #323641;
  margin-bottom: 15px; }

section .user_Data h2 {
  font: 18px "droid_sansbold";
  color: #323641;
  margin-bottom: 12px;
  padding-top: 10px; }

section .user_Data h2 span {
  display: block;
  float: left;
  margin-right: 15px; }

section .user_Data h2 span.member {
  background-color: #efefef;
  border-radius: 4px;
  display: block;
  float: left;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  padding: 5px 20px; }

section .user_Data p.place {
  font: 16px "droid_sansregular"; }

section .user_Data p.date {
  width: 125px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 25px;
  font: 14px "droid_sansregular";
  color: #6d6f75; }

section a.user_link {
  font: 16px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  line-height: 23px;
  display: block;
  margin-bottom: 10px; }

section a.user_link i {
  width: 23px;
  height: 23px;
  display: block;
  float: left;
  background-position: 0 -75px;
  margin-right: 8px; }

section .user_Data p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  margin-bottom: 15px;
  line-height: 20px; }

section .contact_data {
  font: 16px "droid_sansregular";
  color: #6d6f75;
  float: left; }

section .loadmore_panel {
  width: 1305px;
  margin: auto; }

section .load_more_btn {
  display: block;
  float: left;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 28px 9px 28px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 21px 0;
  line-height: 21px; }

section .msgs_details_box {
  padding-top: 10px;
  background: #ffffff;
  width: 1305px;
  margin: auto;
  margin-bottom: 0px; }

section .urgent_txt {
  font: 18px "droid_sansbold" !important;
  color: #323641 !important;
  text-decoration: none !important;
  float: left; }

section .msgs_links i.right_arrow {
  width: 27px;
  height: 27px;
  float: right;
  background-position: 0 -206px;
  display: block;
  cursor: pointer; }

section .msgs_links i.left_arrow {
  width: 27px;
  height: 27px;
  float: right;
  background-position: 0 -178px;
  display: block;
  margin-right: 15px;
  cursor: pointer; }

section .to_txt a {
  text-decoration: underline !important;
  color: #2c6580; }

section .loadmore_panel ul {
  float: left; }

section .loadmore_panel ul li {
  list-style-type: none;
  display: inline-block; }

section .loadmore_panel ul li a {
  display: block;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .loadmore_panel ul li a:hover {
  border-radius: 4px;
  background-color: #0f1f5b;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #ffffff;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .loadmore_panel ul li a.slected {
  border-radius: 4px;
  background-color: #0f1f5b;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #ffffff;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .compose_msg {
  float: left; }

section .auto_tags, section .auto_tag_txt {
  font: 13px "droid_sansregular";
  text-decoration: none;
  background-color: #ecf0f1;
  border-radius: 30px;
  padding: 3px 4px 3px 10px;
  color: #6d6f75;
  margin-right: 5px;
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

section .auto_tags i, section .auto_tag_txt i {
  background-color: #d2dbe0;
  border-radius: 50px;
  font: 13px "droid_sansregular";
  color: #6d6f75;
  padding: 0px 4px;
  margin-left: 4px; }

section .auto_tag_txt {
  padding: 7px 7px 7px 10px;
  font: 14px "droid_sansregular";
  float: left;
  margin-bottom: 13px;
  margin-left: 7px; }

section .auto_tag_txt i.attach {
  width: 19px;
  height: 18px;
  background-position: 5px -237px;
  float: left;
  background-color: transparent;
  margin-right: 5px; }

section .user_Data a.cc {
  float: right;
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  margin-right: 10px; }

section .user_Data a.bcc {
  float: right;
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline; }

section .user_Data a.advance_txt {
  float: left;
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  padding-left: 15px; }

section .user_Data input.compose_inpt {
  width: 750px;
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 20px; }

section .user_Data input::-webkit-input-placeholder {
  font: 14px "droid_sansregular" !important; }

section .user_Data textarea.compose_area {
  width: 750px;
  height: 200px;
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 20px;
  background-color: transparent;
  border: 0px;
  outline: none;
  resize: none; }

section .user_Data textarea::-webkit-input-placeholder {
  font: 14px "droid_sansregular" !important; }

section .attach_pan {
  width: 765px;
  border-top: #e1e2e0 solid 1px;
  padding: 7px 12px 5px 16px;
  margin-left: -9px; }

section .attach_pan a.link-1 {
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  margin-right: 15px;
  float: left;
  padding-top: 4px; }

section .reply_msg_panel {
  width: 1305px;
  border-top: #cbccc9 1px solid;
  margin-left: -21px; }

section .auto_users {
  position: absolute;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  width: 285px;
  left: 150px;
  top: 0px;
  z-index: 9999;
  box-shadow: 0px 1px 2px #f2f2f2; }

section .auto_users:after, section .auto_users:before {
  right: 100%;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

section .auto_users:after {
  border-color: rgba(248, 248, 248, 0);
  border-right-color: #f8f8f8;
  border-width: 10px;
  margin-top: -10px; }

section .auto_users:before {
  border-color: rgba(238, 238, 238, 0);
  border-right-color: #eeeeee;
  border-width: 11px;
  margin-top: -11px; }

section .auto_users ul {
  margin: 0px;
  width: 100%; }

section .auto_users ul li {
  display: block;
  list-style-type: none;
  padding-left: 20px;
  padding-right: 15px;
  margin: 0px !important; }

section .auto_users ul li:hover {
  background-color: #efefef !important; }

section .auto_users ul li div.listing {
  border-bottom: #e6e7e8 solid 1px;
  padding: 12px 0px 8px 0px; }

section .auto_users ul li div.listing img {
  float: left;
  margin-right: 12px; }

section .auto_users ul li div.listing p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 17px; }

section .auto_users ul li div.listing p span a {
  text-decoration: none;
  color: #6d6f75;
  margin: 0px;
  padding: 0px;
  line-height: 16px;
  font: 14px "droid_sansbold" !important;
  text-transform: none; }

section .auto_users ul li div.listing p span {
  font: 14px "droid_sansbold"; }

section .tab_panel {
  width: 1200px;
  border: #e4e4e4 solid 1px;
  margin: auto;
  padding: 35px 22px 22px;
  margin-top: 40px; }

section .tab_panel ul {
  float: left;
  margin-top: -84px;
  margin-left: -23px; }

section .tab_panel ul li.tab {
  float: left;
  list-style-type: none;
  background-color: #e6e7e8;
  margin-right: 5px;
  width: 147px;
  border-top: #e6e7e8 solid 5px;
  border-right: #e6e7e8 solid 1px;
  border-left: #e6e7e8 solid 1px; }

section .tab_panel ul li.tab.selected {
  background-color: #ffffff;
  border-top: #6da1b5 solid 5px;
  border-right: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px; }

section .tab_panel ul li.tab:hover {
  background-color: #ffffff;
  border-top: #6da1b5 solid 5px;
  border-right: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px; }

section .tab_panel ul li.tab a {
  display: block;
  padding: 12px 0px 13px;
  text-align: center; }

section .tab_panel ul li a.view {
  display: block;
  padding: 12px 0px 13px;
  text-align: left;
  color: #2c6580;
  text-decoration: underline; }

section .data_listing {
  border-left: #efefef solid 1px;
  border-bottom: #efefef solid 7px;
  border-right: 0px;
  width: 100%;
  background-color: #ffffff;
  margin-top: 15px; }

section .data_listing_header {
  background-color: #efefef;
  color: #393a3c;
  padding: 13px 0px; }

section .data_listing_header p.heading_1 {
  position: relative;
  width: 138px;
  padding-left: 25px;
  float: left; }

section .data_listing ul {
  margin: 0px;
  padding: 0px; }

section .data_listing ul li {
  background-color: transparent !important;
  border: none !important;
  line-height: 40px;
  border-right: #efefef solid 1px !important; }

section .data_listing ul li.last {
  border-right: #ffffff solid 1px !important; }

section .eye {
  width: 31px;
  height: 17px;
  background-position: -40px -86px;
  float: left;
  margin: 11px 33px 11px 25px; }

section .eye:hover {
  cursor: pointer; }

section .edit {
  width: 22px;
  height: 22px;
  background-position: -40px -105px;
  float: left;
  margin: 8px 31px 11px 0px; }

section .edit:hover {
  cursor: pointer; }

section .delete {
  width: 18px;
  height: 25px;
  background-position: -40px -129px;
  float: left;
  margin: 5px 0px 11px 0px; }

section .delete:hover {
  cursor: pointer; }

section .up_arrow {
  width: 10px;
  height: 6px;
  background-position: -27px -158px;
  position: absolute;
  top: 4px;
  right: 46px; }

section .dwn_arrow {
  width: 10px;
  height: 6px;
  background-position: -27px -166px;
  position: absolute;
  top: 12px;
  right: 46px; }

.login_container {
  width: 300px;
  height: 320px;
  margin: auto;
  background-color: #ffffff;
  margin-top: 217px;
  padding: 50px 60px 0; }

.login_container .login_msg {
  width: 300px; }

.login_container .wrapper-dropdown-4, .login_container .wrapper-dropdown-5 {
  width: 268px;
  margin-top: 40px;
  margin-left: -12px;
  padding-left: 23px; }

.login_container .wrapper-dropdown-4 input[type="text"], .login_container .wrapper-dropdown-5 input[type="text"] {
  width: 250px; }

.login_container .login_btn {
  background-color: #2c6580;
  border-radius: 4px;
  border: 0px;
  font: 18px "open_sansregular";
  color: #ffffff;
  width: 100%;
  padding: 8px 0px;
  margin-top: 3px;
  outline: none;
  cursor: pointer;
  margin-bottom: 21px; }

.login_container .remember {
  font: 14px "droid_sansregular";
  color: #6d6f75; }

.login_container .remember input {
  float: left;
  margin-right: 7px; }

.login_container a.reset_pass {
  display: block;
  float: right;
  font: 14px "droid_sansregular";
  color: #6d6f75;
  text-decoration: underline; }

section.acount_wrapper {
  width: 1305px;
  margin: auto;
  background-color: transparent; }

section.acount_wrapper .profile_pan {
  box-shadow: 0px 1px 2px #f2f2f2;
  background: #ffffff;
  width: 637px;
  float: left; }

section.acount_wrapper .contact_pan {
  width: 637px;
  float: right; }

section.acount_wrapper .profile_wrapper {
  width: 637px;
  float: left; }

section.acount_wrapper .heading_section {
  border-bottom: #e6e7e8 solid 1px;
  padding: 8px 20px; }

section.acount_wrapper .h1_heading {
  font: 32px "Museo Slab 900";
  color: #403f3c;
  text-align: left;
  float: left; }

section.acount_wrapper .edit_btn {
  display: block;
  float: right;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 7px 35px 6px 35px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  line-height: 21px;
  margin: 1px 0px 0;
  border: 0px;
  outline: none;
  cursor: pointer; }

section.acount_wrapper .profile_Det {
  padding: 29px 20px; }

section.acount_wrapper .profile_Det img {
  float: left;
  margin-right: 23px; }

section.acount_wrapper .profile_Det article {
  float: left; }

section.acount_wrapper .profile_Det article h3 {
  font: 26px "droid_sansregular";
  color: #e65b45;
  line-height: 21px; }

section.acount_wrapper .profile_Det article p {
  line-height: 25px; }

section.acount_wrapper .profile_Det article div.info_list {
  border-bottom: #e6e7e8 solid 1px;
  padding: 14px 0px 11px 0px; }

section.acount_wrapper .profile_Det article div.info_list p.name {
  font: 18px "droid_sansbold";
  color: #403f3c;
  float: left; }

section.acount_wrapper .profile_Det article div.info_list p.name span {
  font: 18px "droid_sansregular";
  color: #403f3c;
  line-height: 26px;
  display: block;
  padding-left: 16px;
  padding-top: 14px; }

section.acount_wrapper .profile_Det article div.info_list p a {
  font: 16px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline; }

section.acount_wrapper .profile_Det article div.info_list p.det {
  font: 18px "droid_sansregular";
  color: #403f3c;
  float: left;
  line-height: 26px; }

section.acount_wrapper .profile_Det article div.info_list p.msg {
  font: 16px "droid_sansregular";
  color: #6d6f75;
  float: left;
  line-height: 29px; }

section.acount_wrapper .heading_section p.name_heading, section.acount_wrapper .heading_section p.hour_heading {
  font: 18px "droid_sansbold";
  color: #403f3c;
  float: left; }

section.acount_wrapper .heading_Span {
  display: block;
  float: left; }

section.acount_wrapper .sm_Arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4.5px 0 4.5px;
  float: left;
  border-color: #323641 transparent transparent transparent;
  margin-top: 6px; }

.bulk_popup {
  width: 640px;
  min-height: 400px;
  height: auto;
  background-color: #ffffff;
  margin: auto; }

.bulk_popup h1 {
  line-height: 65px;
  padding-left: 20px;
  font-size: 28px; }

.bulk_popup ul {
  margin: 24px 50px; }

.bulk_popup ul li {
  display: block;
  line-height: 30px; }

.bulk_popup ul li a {
  color: #2c6580;
  text-decoration: underline; }

.droid_heading {
  line-height: 45px;
  padding-left: 20px; }

footer div.wrapper {
  width: 100%;
  height: 103px;
  background: #373942; }

footer div.inner-wrapper {
  width: 1305px;
  height: 103px;
  margin: auto;
  padding: 30px 0; }

footer .footer_txt, footer p.left, footer p.right {
  font: 13px "droid_sansregular";
  color: #ffffff; }

footer p.left {
  float: left; }

footer p.right {
  float: right; }

.create_new_btn, .upload_btn, .add_btn {
  display: block;
  float: left;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 33px 9px 33px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 20px 17px 0;
  line-height: 21px; }

.upload_btn {
  background-color: #2c6580;
  color: #ffffff; }

.add_btn {
  margin: 0px;
  font: 28px "droid_sansbold";
  padding: 2px 12px 2px 12px;
  margin-left: 13px; }

.cncl_link {
  color: #2c6580;
  text-decoration: underline;
  font: 14px "droid_sansregular";
  display: block;
  padding-left: 24px;
  padding-top: 53px;
  float: left; }

.tab_gen_info {
  padding: 13px 24px; }

.tab_gen_info h3 i.up_mark {
  width: 10px;
  height: 6px;
  background-position: -28px -114px;
  float: left;
  margin-right: 7px;
  margin-top: 11px; }

.tab_gen_info h3 i.side_mark {
  width: 6px;
  height: 10px;
  background-position: -30px -102px;
  float: left;
  margin-right: 7px;
  margin-top: 8px; }

.tab_gen_info article.left {
  float: left;
  margin-top: 35px;
  margin-left: 18px; }

.tab_gen_info article.left p {
  text-align: left;
  float: left;
  margin-bottom: 23px; }

.tab_gen_info article.left p label {
  float: left;
  width: 120px; }

.tab_gen_info article.left p span {
  display: block;
  float: left; }

.tab_gen_info article.left p span label {
  float: none !important; }

.tab_gen_info .map_link {
  display: block;
  float: left;
  padding-top: 10px;
  padding-left: 15px;
  color: #2c6580;
  text-decoration: underline; }

.profile_details {
  border-bottom: #e6e7e8 solid 1px;
  padding: 33px 32px; }

.profile_details img {
  float: left;
  margin-top: 17px;
  margin-left: 8px; }

.profile_details .prsn_info {
  float: left;
  padding-left: 65px;
  width: 450px; }

.profile_details .prsn_info p {
  float: left; }

.profile_details .prsn_info label {
  display: block;
  float: left;
  width: 98px; }

.profile_details .prsn_info span {
  display: block;
  float: left; }

.contact_info {
  border-bottom: #e6e7e8 solid 1px;
  padding: 13px 24px 13px; }

.contact_info img {
  float: left;
  margin-top: 17px;
  margin-left: 8px; }

.contact_info .prsn_info {
  float: left;
  padding-left: 58px;
  width: 510px; }

.contact_info .prsn_info p {
  float: left; }

.contact_info .prsn_info label {
  display: block;
  float: left;
  width: 66px; }

.contact_info .prsn_info span {
  display: block;
  float: left; }

.contact_info {
  border-bottom: #e6e7e8 solid 1px;
  padding: 13px 24px 13px; }

.contact_info img {
  float: left;
  margin-top: 17px;
  margin-left: 8px; }

.contact_info .prsn_info {
  float: left;
  padding-left: 58px;
  width: 510px; }

.contact_info .prsn_info p {
  float: left; }

.contact_info .prsn_info label {
  display: block;
  float: left;
  width: 66px; }

.contact_info .prsn_info span {
  display: block;
  float: left; }

.city_pan {
  width: 100px;
  float: left;
  margin: 0px 0px 22px 0px; }

.city_pan .sbOptions {
  width: 178px;
  top: 123px !important;
  left: 24px; }

.city_pan div.sbHolder {
  width: 78px;
  float: left; }

.city_pan a.sbSelector {
  width: 120px; }

.grad_pan {
  width: 290px;
  float: left;
  margin: 0px 0px 22px 0px; }

.grad_pan .sbOptions {
  width: 295px;
  top: 123px !important;
  left: 24px; }

.grad_pan div.sbHolder {
  width: 280px;
  float: left; }

.grad_pan a.sbSelector {
  width: 265px;
  height: 36px; }

.tutor_pan {
  width: 255px;
  float: left;
  margin: 0px 0px 22px 0px; }

.tutor_pan .sbOptions {
  width: 270px;
  top: 123px !important;
  left: 24px; }

.tutor_pan div.sbHolder {
  width: 255px;
  float: left; }

.tutor_pan a.sbSelector {
  width: 235px;
  height: 36px; }

.prnt_pan {
  width: 345px;
  float: left;
  margin: 0px 0px 22px 0px; }

.prnt_pan .sbOptions {
  width: 370px;
  top: 123px !important;
  left: 24px; }

.prnt_pan div.sbHolder {
  width: 345px;
  float: left; }

.prnt_pan a.sbSelector {
  width: 335px;
  height: 36px; }

.info_divider {
  border-bottom: #e6e7e8 solid 1px; }

.create_inpt, .create_area {
  position: relative;
  width: 413px;
  margin: 0 auto;
  padding: 10px;
  -webkit-box-shadow: inset 1px 1px 5px -1px #c8c8c8;
  -moz-box-shadow: inset 1px 1px 5px -1px #c8c8c8;
  box-shadow: inset 1px 1px 5px -1px #c8c8c8;
  background: #f8f8f8;
  outline: none;
  color: #cbcbcb;
  border-radius: 4px;
  border: 0px; }

.create_area {
  height: 100px;
  resize: none; }

.del_assign {
  width: 19px;
  height: 27px;
  background-position: -40px -28px;
  display: block;
  float: left; }

.calndr_tutr {
  width: 32px;
  height: 32px;
  background-position: -40px -176px;
  display: block;
  float: right;
  margin: 3px 20px 0 0; }

.error {
  color: red; }

.pic_button > input {
  opacity: 0;
  width: 85px;
  position: absolute;
  left: 0px;
  top: -21px;
  height: 54px; }

.note_assigned {
  float: left;
  width: 527px; }

label i {
  color: #ff7575;
  font-style: normal; }

.school_divider {
  margin-bottom: 30px; }

.SumoSelect > .CaptionCont > span.placeholder {
  font-style: normal;
  color: #403f3c; }

.tip-container {
  right: 15px !important; }

.select2-container-multi .select2-choices .select2-search-field input {
  width: 150px !important; }

#days_unable_to_test {
  float: left !important; }

/*.parent-information{
    display: block !important;
}*/
.fancybox-skin {
  background-color: #fff; }

.w345 {
  width: 345px; }

section .drop_downs {
  width: 98%; }

.prsn_info label i {
  color: #ff7575;
  font-style: normal;
  font-size: 18px; }

.prsn_info label {
  display: block;
  float: left; }

.pic_button {
  /*        left: 87px !important;*/
  top: 203px !important;
  /*        width: 40px;*/ }

.pic_button:hover {
  cursor: pointer; }

/*    #image{
        opacity: 0;
        margin: -35px -25px 10px !important;
        width: 100px;
    }*/
section {
  overflow: hidden !important; }

section {
  overflow: hidden !important; }

.note_assigned {
  float: left;
  width: 527px; }

.parent-errors {
  width: 100%;
  margin: 0 auto;
  margin-left: 70px;
  font-size: 14px;
  line-height: 22px; }

.parent-errors ul li {
  color: red; }

.pic_button > input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: -21px;
  height: 54px;
  width: 85px; }

.pic_button > input:hover {
  cursor: pointer; }

@font-face {
  font-family: 'Museo Slab 100';
  src: url("font/Museo_Slab_100.eot");
  /* IE9 Compat Modes */
  src: url("font/Museo_Slab_100.eot?#iefix") format("embedded-opentype"), url("font/Museo_Slab_100.woff") format("woff"), url("font/Museo_Slab_100.ttf") format("truetype"), url("font/Museo_Slab_100.svg#c5cf83e9c2b0745353b3031eae370a5b") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'Museo Slab 900';
  src: url("font/Museo_Slab_900.eot");
  /* IE9 Compat Modes */
  src: url("font/Museo_Slab_900.eot?#iefix") format("embedded-opentype"), url("font/Museo_Slab_900.woff") format("woff"), url("font/Museo_Slab_900.ttf") format("truetype"), url("font/Museo_Slab_900.svg#9f7096d3ce6d5c733eae8f58eab65d8f") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'droid_sansregular';
  src: url("font/droidsans.eot");
  src: url("font/droidsans.eot?#iefix") format("embedded-opentype"), url("font/droidsans.woff2") format("woff2"), url("font/droidsans.woff") format("woff"), url("font/droidsans.ttf") format("truetype"), url("font/droidsans.svg#droid_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'droid_sansbold';
  src: url("font/droidsans-bold.eot");
  src: url("font/droidsans-bold.eot?#iefix") format("embedded-opentype"), url("font/droidsans-bold.woff2") format("woff2"), url("font/droidsans-bold.woff") format("woff"), url("font/droidsans-bold.ttf") format("truetype"), url("font/droidsans-bold.svg#droid_sansbold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'open_sansregular';
  src: url("font/opensans-regular-webfont.eot");
  src: url("font/opensans-regular-webfont.eot?#iefix") format("embedded-opentype"), url("font/opensans-regular-webfont.woff") format("woff"), url("font/opensans-regular-webfont.ttf") format("truetype"), url("font/opensans-regular-webfont.svg#open_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }

/*@import "components/droid_sans";
@import "components/open_sans";*/
/* DEMO 3 */
.w230 {
  width: 230px !important; }

.mL10 {
  margin-left: 10px !important; }

.bdr_none {
  border: none !important; }

.wrapper-dropdown-3:focus .dropdown {
  opacity: 1;
  pointer-events: auto; }

.wrapper-dropdown-3 {
  /* Size and position */
  position: relative;
  width: 188px;
  margin: 0 auto;
  padding: 10px;
  /* Styles */
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd;
  box-shadow: inset 1px 1px 5px -1px #dddddd;
  background: #f8f8f8;
  cursor: pointer;
  outline: none;
  /* Font settings */
  font: 18px "droid_sansregular";
  color: #cbcbcb;
  border-radius: 4px; }

.wrapper-dropdown-3:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #6d6f75 transparent; }

.wrapper-dropdown-3 .dropdown {
  /* Size & position */
  position: absolute;
  top: 140%;
  left: 0;
  right: 0;
  /* Styles */
  background: white;
  border-radius: inherit;
  border: 1px solid rgba(0, 0, 0, 0.17);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-weight: normal;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  list-style: none;
  z-index: 9999;
  /* Hiding */
  opacity: 0;
  pointer-events: none;
  margin: 0px;
  margin-top: -16px !important; }

/*.wrapper-dropdown-3 .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.wrapper-dropdown-3 .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}*/
.wrapper-dropdown-3 .dropdown li {
  float: none;
  list-style-type: none;
  background-color: #ffffff;
  margin: 0px;
  width: auto;
  border: none; }

.wrapper-dropdown-3 .dropdown li:hover {
  border: none; }

.wrapper-dropdown-3 .dropdown li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #e0e4e4;
  border-bottom: 1px solid #e6e8ea;
  box-shadow: inset 0 1px 0 white;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-align: left; }

.wrapper-dropdown-3 .dropdown li i {
  float: right;
  color: inherit; }

.wrapper-dropdown-3 .dropdown li:first-of-type a {
  border-radius: 7px 7px 0 0; }

.wrapper-dropdown-3 .dropdown li:last-of-type a {
  border: none;
  border-radius: 0 0 7px 7px; }

/* Hover state */
.wrapper-dropdown-3 .dropdown li:hover a {
  background: #f2f2f2; }

/* Active state */
.wrapper-dropdown-3.active .dropdown {
  opacity: 1;
  pointer-events: auto; }

/* No CSS3 support */
.no-opacity .wrapper-dropdown-3 .dropdown,
.no-pointerevents .wrapper-dropdown-3 .dropdown {
  display: none;
  opacity: 1;
  /* If opacity support but no pointer-events support */
  pointer-events: auto;
  /* If pointer-events support but no pointer-events support */ }

.no-opacity .wrapper-dropdown-3.active .dropdown,
.no-pointerevents .wrapper-dropdown-3.active .dropdown {
  display: block; }

.wrapper-dropdown-4, .wrapper-dropdown-5 {
  /* Size and position */
  position: relative;
  width: 254px;
  margin: 0 auto;
  padding: 8px 10px 9px 10px;
  /* Styles */
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd;
  box-shadow: inset 1px 1px 5px -1px #dddddd;
  background: #f8f8f8;
  cursor: pointer;
  outline: none;
  /* Font settings */
  font: 18px "open_sansregular";
  color: #cbcbcb;
  border-radius: 4px;
  margin-top: 21px;
  margin-right: 15px; }

.wrapper-dropdown-4 input[type="text"], .wrapper-dropdown-5 input[type="text"] {
  background-color: transparent !important;
  outline: none;
  border: none;
  line-height: 25px;
  width: 235px;
  font: 18px "open_sansregular";
  color: #c9c9c8; }

.wrapper-dropdown-5 {
  width: 775px;
  float: left; }

.wrapper-dropdown-5 input[type="text"] {
  background-color: transparent !important;
  outline: none;
  border: none;
  line-height: 25px;
  width: 235px;
  font: 18px "open_sansregular";
  color: #c9c9c8; }

::-webkit-input-placeholder {
  font: 18px "open_sansregular";
  color: #c9c9c8; }

:-moz-placeholder {
  /* Firefox 18- */
  font: 18px "open_sansregular";
  color: #c9c9c8; }

::-moz-placeholder {
  /* Firefox 19+ */
  font: 18px "open_sansregular";
  color: #c9c9c8; }

:-ms-input-placeholder {
  font: 18px "open_sansregular";
  color: #c9c9c8; }

input[type=checkbox].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: 100px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

input[type=checkbox].css-checkbox + label.css-label {
  padding-left: 40px;
  height: 24px;
  display: inline-block;
  line-height: 30px;
  background-repeat: no-repeat;
  background-position: 0 0;
  font-size: 14px;
  vertical-align: middle;
  cursor: pointer;
  margin: 23px;
  float: left;
  color: #6d6f75; }

input[type=checkbox].css-checkbox:checked + label.css-label {
  background-position: 0 -24px; }

label.css-label {
  background-image: url(../images/check_img.png);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.icons {
  background-image: url("../images/sprite.png");
  background-repeat: no-repeat; }

a {
  outline: none !important; }

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

.mt-2 {
  margin-top: -2px !important; }

.mt-1 {
  margin-top: -1px !important; }

.mt-4 {
  margin-top: -4px !important; }

.mR0 {
  margin-right: 0px !important; }

.m00 {
  margin: 0px !important; }

.mb21 {
  margin-bottom: 21px !important; }

.mb3 {
  margin-bottom: 3px !important; }

.mb90 {
  margin-bottom: 90px !important; }

.mt-20 {
  margin-top: -20px !important; }

.mt0 {
  margin-top: 0px !important; }

.mt3 {
  margin-top: 3px !important; }

.mt4 {
  margin-top: 4px !important; }

.mt5 {
  margin-top: 5px !important; }

.mt7 {
  margin-top: 7px !important; }

.mt6 {
  margin-top: 6px !important; }

.mt8 {
  margin-top: 8px !important; }

.mt9 {
  margin-top: 9px !important; }

.mt10 {
  margin-top: 10px !important; }

.mt12 {
  margin-top: 12px !important; }

.mt13 {
  margin-top: 13px !important; }

.mt14 {
  margin-top: 14px !important; }

.mt15 {
  margin-top: 15px !important; }

.mt16 {
  margin-top: 16px !important; }

.mt17 {
  margin-top: 17px !important; }

.mt20 {
  margin-top: 20px !important; }

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

.mt23 {
  margin-top: 23px !important; }

.mt24 {
  margin-top: 24px !important; }

.mt25 {
  margin-top: 25px !important; }

.mt28 {
  margin-top: 28px !important; }

.mt30 {
  margin-top: 30px !important; }

.mt35 {
  margin-top: 35px !important; }

.mt37 {
  margin-top: 37px !important; }

.mt38 {
  margin-top: 38px !important; }

.mt39 {
  margin-top: 39px !important; }

.mt40 {
  margin-top: 40px !important; }

.mt42 {
  margin-top: 42px !important; }

.mt43 {
  margin-top: 43px !important; }

.mt47 {
  margin-top: 47px !important; }

.mt48 {
  margin-top: 48px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt60 {
  margin-top: 60px !important; }

.mt68 {
  margin-top: 68px !important; }

.mt70 {
  margin-top: 70px !important; }

.mt75 {
  margin-top: 75px !important; }

.mt77 {
  margin-top: 77px !important; }

.mt87 {
  margin-top: 87px !important; }

.mt98 {
  margin-top: 98px !important; }

.mt100 {
  margin-top: 100px !important; }

.mt190 {
  margin-top: 190px !important; }

.mL-15 {
  margin-left: -15px !important; }

.mL-24 {
  margin-left: -24px !important; }

.mL-8 {
  margin-left: -8px !important; }

.mL43p {
  margin-left: 43% !important; }

.mL-1 {
  margin-left: -1px !important; }

.mL-5 {
  margin-left: -5px !important; }

.mL0 {
  margin-left: 0px !important; }

.mL2 {
  margin-left: 2px !important; }

.mL4 {
  margin-left: 4px !important; }

.mL5 {
  margin-left: 5px !important; }

.mL6 {
  margin-left: 6px !important; }

.mL7 {
  margin-left: 7px !important; }

.mL9 {
  margin-left: 9px !important; }

.mL10 {
  margin-left: 10px !important; }

.mL12 {
  margin-left: 12px !important; }

.mL15 {
  margin-left: 15px !important; }

.mL17 {
  margin-left: 17px !important; }

.mL20 {
  margin-left: 20px !important; }

.mL21 {
  margin-left: 21px !important; }

.mL-23 {
  margin-left: -23px !important; }

.mL-24 {
  margin-left: -24px !important; }

.mL22 {
  margin-left: 22px !important; }

.mL23 {
  margin-left: 23px !important; }

.mL24 {
  margin-left: 24px !important; }

.mL25 {
  margin-left: 25px !important; }

.mL27 {
  margin-left: 27px !important; }

.mL28 {
  margin-left: 28px !important; }

.mL30 {
  margin-left: 30px !important; }

.mL31 {
  margin-left: 31px !important; }

.mL32 {
  margin-left: 32px !important; }

.mL33 {
  margin-left: 33px !important; }

.mL35 {
  margin-left: 35px !important; }

.mL40 {
  margin-left: 40px !important; }

.mL42 {
  margin-left: 42px !important; }

.mL45 {
  margin-left: 45px !important; }

.mL48 {
  margin-left: 48px !important; }

.mL50 {
  margin-left: 50px !important; }

.mL52 {
  margin-left: 52px !important; }

.mL55 {
  margin-left: 55px !important; }

.mL56 {
  margin-left: 56px !important; }

.mL58 {
  margin-left: 58px !important; }

.mL60 {
  margin-left: 60px !important; }

.mL62 {
  margin-left: 62px !important; }

.mL65 {
  margin-left: 65px !important; }

.mL90 {
  margin-left: 90px !important; }

.mL95 {
  margin-left: 95px !important; }

.mL100 {
  margin-left: 100px !important; }

.mL110 {
  margin-left: 110px !important; }

.mL131 {
  margin-left: 131px !important; }

.mL140 {
  margin-left: 140px !important; }

.mL150 {
  margin-left: 150px !important; }

.mL160 {
  margin-left: 160px !important; }

.mL180 {
  margin-left: 180px !important; }

.mL172 {
  margin-left: 172px !important; }

.mL170 {
  margin-left: 170px !important; }

.mL190 {
  margin-left: 190px !important; }

.mL215 {
  margin-left: 215px !important; }

.mL230 {
  margin-left: 230px !important; }

.mb0 {
  margin-bottom: 0px !important; }

.mb2 {
  margin-bottom: 2px !important; }

.mb5 {
  margin-bottom: 5px !important; }

.mb7 {
  margin-bottom: 7px !important; }

.mb8 {
  margin-bottom: 8px; }

.mb9 {
  margin-bottom: 9px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb-10 {
  margin-bottom: -10px !important; }

.mb11 {
  margin-bottom: 11px !important; }

.mb12 {
  margin-bottom: 12px !important; }

.mb14 {
  margin-bottom: 14px !important; }

.mb15 {
  margin-bottom: 15px !important; }

.mb19 {
  margin-bottom: 19px; }

.mb18 {
  margin-bottom: 18px; }

.mb20 {
  margin-bottom: 20px !important; }

.mb22 {
  margin-bottom: 22px !important; }

.mb23 {
  margin-bottom: 23px !important; }

.mb24 {
  margin-bottom: 24px !important; }

.mb25 {
  margin-bottom: 25px !important; }

.mb27 {
  margin-bottom: 27px !important; }

.mb28 {
  margin-bottom: 28px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mb32 {
  margin-bottom: 32px !important; }

.mb33 {
  margin-bottom: 33px !important; }

.mb34 {
  margin-bottom: 34px !important; }

.mb35 {
  margin-bottom: 35px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mb43 {
  margin-bottom: 43px !important; }

.mb44 {
  margin-bottom: 44px !important; }

.mb46 {
  margin-bottom: 46px !important; }

.mb58 {
  margin-bottom: 58px !important; }

.mb57 {
  margin-bottom: 57px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mb70 {
  margin-bottom: 70px !important; }

.mb85 {
  margin-bottom: 85px !important; }

.mr-11 {
  margin-right: -11px !important; }

.mr-5 {
  margin-right: -5px !important; }

.mr-16 {
  margin-top: -16px !important; }

.mr0 {
  margin-right: 0px !important; }

.mr3 {
  margin-right: 3px !important; }

.mr5 {
  margin-right: 5px !important; }

.mr7 {
  margin-right: 7px !important; }

.mr10 {
  margin-right: 10px !important; }

.mr12 {
  margin-right: 12px !important; }

.mr14 {
  margin-right: 14px !important; }

.mr15 {
  margin-right: 15px !important; }

.mr16 {
  margin-right: 16px !important; }

.mr18 {
  margin-right: 18px !important; }

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

.mr23 {
  margin-right: 23px !important; }

.mr25 {
  margin-right: 25px !important; }

.mr30 {
  margin-right: 30px !important; }

.mr35 {
  margin-right: 35px !important; }

.mr36 {
  margin-right: 36px !important; }

.mr38 {
  margin-right: 38px !important; }

.mr40 {
  margin-right: 40px !important; }

.mr45 {
  margin-right: 45px !important; }

.mr56 {
  margin-right: 56px !important; }

.mr100 {
  margin-right: 100px !important; }

.mr80 {
  margin-right: 80px !important; }

.mr70 {
  margin-right: 70px !important; }

.mr90 {
  margin-right: 90px !important; }

.mr98 {
  margin-right: 98px !important; }

.mr145 {
  margin-right: 145px !important; }

.mr168 {
  margin-right: 168px !important; }

.mr180 {
  margin-right: 180px !important; }

.mr120 {
  margin-right: 120px !important; }

.p00 {
  padding: 0px !important; }

.pt0 {
  padding-top: 0px !important; }

.pt4 {
  padding-top: 4px !important; }

.pt05 {
  padding-top: 5px !important; }

.pt07 {
  padding-top: 7px !important; }

.pt8 {
  padding-top: 8px !important; }

.pt10 {
  padding-top: 10px !important; }

.pt11 {
  padding-top: 11px !important; }

.pt13 {
  padding-top: 13px !important; }

.pt14 {
  padding-top: 14px !important; }

.pt16 {
  padding-top: 16px !important; }

.pt17 {
  padding-top: 17px !important; }

.pt20 {
  padding-top: 20px !important; }

.pt21 {
  padding-top: 21px !important; }

.pt25 {
  padding-top: 25px !important; }

.pt28 {
  padding-top: 28px !important; }

.pt30 {
  padding-top: 30px !important; }

.pt32 {
  padding-top: 32px !important; }

.pt35 {
  padding-top: 35px !important; }

.pt37 {
  padding-top: 37px !important; }

.pt40 {
  padding-top: 40px !important; }

.pt43 {
  padding-top: 43px !important; }

.pt58 {
  padding-top: 58px !important; }

.pt60 {
  padding-top: 60px !important; }

.pb0 {
  padding-bottom: 0px !important; }

.pb3 {
  padding-bottom: 3px !important; }

.pb9 {
  padding-bottom: 9px !important; }

.pb5 {
  padding-bottom: 5px !important; }

.pb7 {
  padding-bottom: 7px !important; }

.pb8 {
  padding-bottom: 8px !important; }

.pb10 {
  padding-bottom: 10px !important; }

.pb12 {
  padding-bottom: 12px !important; }

.pb13 {
  padding-bottom: 13px !important; }

.pb14 {
  padding-bottom: 14px !important; }

.pb15 {
  padding-bottom: 15px !important; }

.pb16 {
  padding-bottom: 16px !important; }

.pb18 {
  padding-bottom: 18px !important; }

.pb23 {
  padding-bottom: 23px !important; }

.pb29 {
  padding-bottom: 29px !important; }

.pb30 {
  padding-bottom: 30px !important; }

.pb32 {
  padding-bottom: 32px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pb37 {
  padding-bottom: 37px !important; }

.pb40 {
  padding-bottom: 40px !important; }

.pb45 {
  padding-bottom: 45px !important; }

.pb55 {
  padding-bottom: 55px !important; }

.pL0 {
  padding-left: 0px !important; }

.pL5 {
  padding-left: 5px !important; }

.pL7 {
  padding-left: 7px !important; }

.pL10 {
  padding-left: 10px !important; }

.pL11 {
  padding-left: 11px !important; }

.pL12 {
  padding-left: 12px !important; }

.pL15 {
  padding-left: 15px !important; }

.pL16 {
  padding-left: 16px !important; }

.pL17 {
  padding-left: 17px !important; }

.pL20 {
  padding-left: 20px !important; }

.pL22 {
  padding-left: 22px !important; }

.pL24 {
  padding-left: 24px !important; }

.pL23 {
  padding-left: 23px !important; }

.pL25 {
  padding-left: 25px !important; }

.pL27 {
  padding-left: 27px !important; }

.pL28 {
  padding-left: 28px !important; }

.pL30 {
  padding-left: 30px !important; }

.pl32 {
  padding-left: 32px !important; }

.pl33 {
  padding-left: 33px !important; }

.pl34 {
  padding-left: 34px !important; }

.pL35 {
  padding-left: 35px !important; }

.pL37 {
  padding-left: 37px !important; }

.pL40 {
  padding-left: 40px !important; }

.pL44 {
  padding-left: 44px !important; }

.pL45 {
  padding-left: 45px !important; }

.pL47 {
  padding-left: 47px !important; }

.pL49 {
  padding-left: 49px !important; }

.pL50 {
  padding-left: 50px !important; }

.pL52 {
  padding-left: 52px !important; }

.pL55 {
  padding-left: 55px !important; }

.pL58 {
  padding-left: 58px !important; }

.pL60 {
  padding-left: 60px !important; }

.pL65 {
  padding-left: 65px !important; }

.pL69 {
  padding-left: 69px !important; }

.pL75 {
  padding-left: 75px !important; }

.pL80 {
  padding-left: 80px !important; }

.pL85 {
  padding-left: 85px !important; }

.pL90 {
  padding-left: 90px !important; }

.pL105 {
  padding-left: 105px !important; }

.pL110 {
  padding-left: 110px !important; }

.pL120 {
  padding-left: 120px !important; }

.pL135 {
  padding-left: 135px !important; }

.pL150 {
  padding-left: 150px !important; }

.pL165 {
  padding-left: 165px !important; }

.pL185 {
  padding-left: 185px !important; }

.pL200 {
  padding-left: 200px !important; }

.pL310 {
  padding-left: 310px !important; }

.pR0 {
  padding-right: 0px !important; }

.pR5 {
  padding-right: 5px !important; }

.pR10 {
  padding-right: 10px !important; }

.pR15 {
  padding-right: 15px !important; }

.pR17 {
  padding-right: 17px !important; }

.pR20 {
  padding-right: 20px !important; }

.pR25 {
  padding-right: 25px !important; }

.pR26 {
  padding-right: 26px !important; }

.pR27 {
  padding-right: 27px !important; }

.pR28 {
  padding-right: 28px !important; }

.pR40 {
  padding-right: 40px !important; }

.pR30 {
  padding-right: 30px !important; }

.pR35 {
  padding-right: 35px !important; }

.pR50 {
  padding-right: 50px !important; }

.pR55 {
  padding-right: 55px !important; }

.pR65 {
  padding-right: 65px !important; }

.pR67 {
  padding-right: 67px !important; }

.pb0 {
  padding-bottom: 0px !important; }

.pb5 {
  padding-bottom: 5px !important; }

.pb8 {
  padding-bottom: 8px !important; }

.pb17 {
  padding-bottom: 17px !important; }

.pb20 {
  padding-bottom: 20px !important; }

.pb25 {
  padding-bottom: 25px !important; }

.pb30 {
  padding-bottom: 30px !important; }

.pb35 {
  padding-bottom: 35px !important; }

.pb38 {
  padding-bottom: 38px !important; }

.pb50 {
  padding-bottom: 50px !important; }

.pb58 {
  padding-bottom: 58px !important; }

.pb60 {
  padding-bottom: 60px !important; }

.w46p {
  width: 46% !important; }

.w47p {
  width: 47% !important; }

.w45p {
  width: 45% !important; }

.w50p {
  width: 50% !important; }

.w60_5p {
  width: 60.5% !important; }

.w98p {
  width: 98% !important; }

.w96p {
  width: 96% !important; }

.w94p {
  width: 94% !important; }

.w100p {
  width: 100% !important; }

.w_auto {
  width: auto !important; }

.w20 {
  width: 20px !important; }

.w38 {
  width: 38px !important; }

.w40 {
  width: 40px !important; }

.w42 {
  width: 42px !important; }

.w45 {
  width: 45px !important; }

.w48 {
  width: 48px !important; }

.w50 {
  width: 50px !important; }

.w54 {
  width: 54px !important; }

.w55 {
  width: 55px !important; }

.w60 {
  width: 60px !important; }

.w61 {
  width: 61px !important; }

.w62 {
  width: 62px !important; }

.w65 {
  width: 65px !important; }

.w68 {
  width: 68px !important; }

.w71 {
  width: 71px !important; }

.w72 {
  width: 72px !important; }

.w75 {
  width: 75px !important; }

.w78 {
  width: 78px !important; }

.w80 {
  width: 80px !important; }

.w84 {
  width: 84px !important; }

.w85 {
  width: 85px !important; }

.w86 {
  width: 86px !important; }

.w87 {
  width: 87px !important; }

.w92 {
  width: 92px !important; }

.w93 {
  width: 93px !important; }

.w99 {
  width: 99px !important; }

.w83 {
  width: 83px !important; }

.w86 {
  width: 86px !important; }

.w88 {
  width: 88px !important; }

.w97 {
  width: 97px !important; }

.w90 {
  width: 90px !important; }

.w94 {
  width: 94px !important; }

.w95 {
  width: 95px !important; }

.w50 {
  width: 50px !important; }

.w60 {
  width: 60px !important; }

.w66 {
  width: 66px !important; }

.w70 {
  width: 70px !important; }

.w40 {
  width: 40px !important; }

.w98 {
  width: 98px !important; }

.w100 {
  width: 100px !important; }

.w102 {
  width: 102px !important; }

.w104 {
  width: 104px !important; }

.w106 {
  width: 106px !important; }

.w108 {
  width: 108px !important; }

.w110 {
  width: 110px !important; }

.w112 {
  width: 112px !important; }

.w113 {
  width: 113px !important; }

.w114 {
  width: 114px !important; }

.w117 {
  width: 117px !important; }

.w120 {
  width: 120px !important; }

.w122 {
  width: 122px !important; }

.w123 {
  width: 123px !important; }

.w124 {
  width: 124px !important; }

.w125 {
  width: 125px !important; }

.w128 {
  width: 128px !important; }

.w130 {
  width: 130px !important; }

.w132 {
  width: 132px !important; }

.w133 {
  width: 133px !important; }

.w134 {
  width: 134px !important; }

.w135 {
  width: 135px !important; }

.w136 {
  width: 136px !important; }

.w138 {
  width: 138px !important; }

.w139 {
  width: 139px !important; }

.w140 {
  width: 140px !important; }

.w143 {
  width: 143px !important; }

.w144 {
  width: 144px !important; }

.w145 {
  width: 145px !important; }

.w147 {
  width: 147px !important; }

.w148 {
  width: 148px !important; }

.w150 {
  width: 150px !important; }

.w151 {
  width: 151px !important; }

.w152 {
  width: 152px !important; }

.w153 {
  width: 153px !important; }

.w154 {
  width: 154px !important; }

.w155 {
  width: 155px !important; }

.w156 {
  width: 156px !important; }

.w157 {
  width: 157px !important; }

.w158 {
  width: 158px !important; }

.w160 {
  width: 160px !important; }

.w161 {
  width: 161px !important; }

.w164 {
  width: 164px !important; }

.w165 {
  width: 165px !important; }

.w166 {
  width: 166px !important; }

.w167 {
  width: 167px !important; }

.w169 {
  width: 169px !important; }

.w170 {
  width: 170px !important; }

.w172 {
  width: 172px !important; }

.w173 {
  width: 173px !important; }

.w175 {
  width: 175px !important; }

.w177 {
  width: 177px !important; }

.w179 {
  width: 179px !important; }

.w180 {
  width: 180px !important; }

.w181 {
  width: 181px !important; }

.w182 {
  width: 182px !important; }

.w183 {
  width: 183px !important; }

.w184 {
  width: 184px !important; }

.w185 {
  width: 185px !important; }

.w190 {
  width: 190px !important; }

.w192 {
  width: 192px !important; }

.w194 {
  width: 194px !important; }

.w195 {
  width: 195px !important; }

.w198 {
  width: 198px !important; }

.w200 {
  width: 200px !important; }

.w202 {
  width: 202px !important; }

.w203 {
  width: 203px !important; }

.w204 {
  width: 204px !important; }

.w205 {
  width: 205px !important; }

.w207 {
  width: 207px !important; }

.w210 {
  width: 210px !important; }

.w212 {
  width: 212px !important; }

.w213 {
  width: 213px !important; }

.w215 {
  width: 215px !important; }

.w218 {
  width: 218px !important; }

.w220 {
  width: 220px !important; }

.w222 {
  width: 222px !important; }

.w223 {
  width: 223px !important; }

.w225 {
  width: 225px !important; }

.w230 {
  width: 230px !important; }

.w233 {
  width: 233px !important; }

.w235 {
  width: 235px !important; }

.w236 {
  width: 236px !important; }

.w237 {
  width: 237px !important; }

.w238 {
  width: 238px !important; }

.w240 {
  width: 240px !important; }

.w245 {
  width: 245px !important; }

.w248 {
  width: 248px !important; }

.w249 {
  width: 249px !important; }

.w250 {
  width: 250px !important; }

.w252 {
  width: 252px !important; }

.w253 {
  width: 253px !important; }

.w255 {
  width: 255px !important; }

.w256 {
  width: 256px !important; }

.w258 {
  width: 258px !important; }

.w260 {
  width: 260px !important; }

.w265 {
  width: 265px !important; }

.w267 {
  width: 267px !important; }

.w270 {
  width: 270px !important; }

.w272 {
  width: 272px !important; }

.w275 {
  width: 275px !important; }

.w278 {
  width: 278px !important; }

.w277 {
  width: 277px !important; }

.w280 {
  width: 280px !important; }

.w283 {
  width: 283px !important; }

.w284 {
  width: 284px !important; }

.w285 {
  width: 285px !important; }

.w288 {
  width: 288px !important; }

.w290 {
  width: 290px !important; }

.w294 {
  width: 294px !important; }

.w295 {
  width: 295px !important; }

.w299 {
  width: 299px !important; }

.w300 {
  width: 300px !important; }

.w305 {
  width: 305px !important; }

.w308 {
  width: 308px !important; }

.w310 {
  width: 310px !important; }

.w315 {
  width: 315px !important; }

.w316 {
  width: 316px !important; }

.w317 {
  width: 317px !important; }

.w318 {
  width: 318px !important; }

.w320 {
  width: 320px !important; }

.w322 {
  width: 322px !important; }

.w324 {
  width: 324px !important; }

.w325 {
  width: 325px !important; }

.w329 {
  width: 329px !important; }

.w330 {
  width: 330px !important; }

.w332 {
  width: 332px !important; }

.w335 {
  width: 335px !important; }

.w337 {
  width: 337px !important; }

.w340 {
  width: 340px !important; }

.w342 {
  width: 342px !important; }

.w343 {
  width: 342px !important; }

.w345 {
  width: 345px !important; }

.w350 {
  width: 350px !important; }

.w355 {
  width: 355px !important; }

.w358 {
  width: 358px !important; }

.w360 {
  width: 360px !important; }

.w365 {
  width: 365px !important; }

.w368 {
  width: 368px !important; }

.w370 {
  width: 370px !important; }

.w373 {
  width: 373px !important; }

.w375 {
  width: 375px !important; }

.w378 {
  width: 378px !important; }

.w380 {
  width: 380px !important; }

.w385 {
  width: 385px !important; }

.w382 {
  width: 382px !important; }

.w390 {
  width: 390px !important; }

.w395 {
  width: 395px !important; }

.w400 {
  width: 400px !important; }

.w405 {
  width: 405px !important; }

.w410 {
  width: 410px !important; }

.w415 {
  width: 415px !important; }

.w420 {
  width: 420px !important; }

.w430 {
  width: 430px !important; }

.w435 {
  width: 435px !important; }

.w440 {
  width: 440px !important; }

.w443 {
  width: 443px !important; }

.w448 {
  width: 448px !important; }

.w450 {
  width: 450px !important; }

.w455 {
  width: 455px !important; }

.w466 {
  width: 466px !important; }

.w470 {
  width: 470px !important; }

.w480 {
  width: 480px !important; }

.w490 {
  width: 490px !important; }

.w493 {
  width: 493px !important; }

.w495 {
  width: 495px !important; }

.w500 {
  width: 500px !important; }

.w505 {
  width: 505px !important; }

.w530 {
  width: 530px !important; }

.w526 {
  width: 526px !important; }

.w540 {
  width: 540px !important; }

.w543 {
  width: 543px !important; }

.w545 {
  width: 545px !important; }

.w550 {
  width: 550px !important; }

.w555 {
  width: 555px !important; }

.w560 {
  width: 560px !important; }

.w570 {
  width: 570px !important; }

.w575 {
  width: 575px !important; }

.w580 {
  width: 580px !important; }

.w583 {
  width: 583px !important; }

.w585 {
  width: 585px !important; }

.w600 {
  width: 600px !important; }

.w607 {
  width: 607px !important; }

.w610 {
  width: 610px !important; }

.w612 {
  width: 612px !important; }

.w615 {
  width: 615px !important; }

.w620 {
  width: 620px !important; }

.w625 {
  width: 625px !important; }

.w630 {
  width: 630px !important; }

.w645 {
  width: 645px !important; }

.w650 {
  width: 650px !important; }

.w657 {
  width: 657px !important; }

.w660 {
  width: 660px !important; }

.w662 {
  width: 662px !important; }

.w675 {
  width: 675px !important; }

.w680 {
  width: 680px !important; }

.w685 {
  width: 685px !important; }

.w692 {
  width: 692px !important; }

.w695 {
  width: 695px !important; }

.w700 {
  width: 700px !important; }

.w722 {
  width: 722px !important; }

.w735 {
  width: 735px !important; }

.w750 {
  width: 750px !important; }

.w760 {
  width: 760px !important; }

.w770 {
  width: 770px !important; }

.w772 {
  width: 772px !important; }

.w775 {
  width: 775px !important; }

.w776 {
  width: 776px !important; }

.w780 {
  width: 780px !important; }

.w782 {
  width: 782px !important; }

.w785 {
  width: 785px !important; }

.w787 {
  width: 787px !important; }

.w790 {
  width: 790px !important; }

.w795 {
  width: 795px !important; }

.w800 {
  width: 800px !important; }

.w810 {
  width: 810px !important; }

.w816 {
  width: 816px !important; }

.w822 {
  width: 822px !important; }

.w825 {
  width: 825px !important; }

.w830 {
  width: 830px !important; }

.w840 {
  width: 840px !important; }

.w845 {
  width: 845px !important; }

.w850 {
  width: 850px !important; }

.w853 {
  width: 853px !important; }

.w855 {
  width: 855px !important; }

.w860 {
  width: 860px !important; }

.w870 {
  width: 870px !important; }

.w875 {
  width: 875px !important; }

.w862 {
  width: 862px !important; }

.w865 {
  width: 865px !important; }

.w876 {
  width: 876px !important; }

.w880 {
  width: 880px !important; }

.w890 {
  width: 890px !important; }

.w895 {
  width: 895px !important; }

.w910 {
  width: 910px !important; }

.w913 {
  width: 913px !important; }

.w940 {
  width: 940px !important; }

.w930 {
  width: 930px !important; }

.w950 {
  width: 950px !important; }

.w960 {
  width: 960px !important; }

.w971 {
  width: 971px !important; }

.w990 {
  width: 990px !important; }

.w991 {
  width: 991px !important; }

.w995 {
  width: 995px !important; }

.w1004 {
  width: 1004px !important; }

.w1005 {
  width: 1005px !important; }

.w1015 {
  width: 1015px !important; }

.w1025 {
  width: 1025px !important; }

.w1050 {
  width: 1050px !important; }

.w1060 {
  width: 1060px !important; }

.w1070 {
  width: 1070px !important; }

.w1072 {
  width: 1072px !important; }

.w1080 {
  width: 1080px !important; }

.w1085 {
  width: 1085px !important; }

.w1105 {
  width: 1105px !important; }

.w1115 {
  width: 1115px !important; }

.w1100 {
  width: 1100px !important; }

.w1107 {
  width: 1107px !important; }

.w1108 {
  width: 1108px !important; }

.w1120 {
  width: 1120px !important; }

.w1125 {
  width: 1125px !important; }

.w1130 {
  width: 1130px !important; }

.w1140 {
  width: 1130px !important; }

.w1135 {
  width: 1135px !important; }

.w1145 {
  width: 1145px !important; }

.w1155 {
  width: 1155px !important; }

.w1165 {
  width: 1165px !important; }

.w1180 {
  width: 1180px !important; }

.w1182 {
  width: 1182px !important; }

.w1175 {
  width: 1175px !important; }

.w1190 {
  width: 1190px !important; }

.w1198 {
  width: 1198px !important; }

.w1245 {
  width: 1180px !important; }

.w1200 {
  width: 1200px !important; }

.w1207 {
  width: 1207px !important; }

.w1230 {
  width: 1230px !important; }

.w1240 {
  width: 1240px !important; }

.w1170 {
  width: 1170px !important; }

.mw790 {
  max-width: 790px; }

.R0 {
  right: 0 !important; }

.lh18 {
  line-height: 18px !important; }

.lh28 {
  line-height: 28px; }

.lh22 {
  line-height: 22px !important; }

.hgt43 {
  height: 43px; }

.hgt27 {
  height: 27px; }

.hgt60 {
  height: 60px !important; }

.hgt50 {
  height: 50px !important; }

.hgt51 {
  height: 51px !important; }

.hgt72 {
  height: 72px; }

.hgt80 {
  height: 80px !important; }

.hgt115 {
  height: 115px; }

.hgt130 {
  height: 130px; }

.hgt135 {
  height: 135px; }

.hgt150 {
  height: 150px; }

.hgt125 {
  height: 125px; }

.hgt170 {
  height: 170px !important; }

.hgt200 {
  height: 200px !important; }

.hgt205 {
  height: 205px !important; }

.hgt240 {
  height: 240px !important; }

.hgt270 {
  height: 270px !important; }

.hgt705 {
  height: 705px !important; }

.hgt800 {
  height: 800px !important; }

.minhgt40 {
  min-height: 40px !important; }

.hgtinherit {
  height: inherit !important; }

.r0 {
  right: 0px !important; }

.r10 {
  right: 10px !important; }

.r20 {
  right: 20px !important; }

.r30 {
  right: 30px !important; }

.r34 {
  right: 34px !important; }

.r50 {
  right: 50px !important; }

.r65 {
  right: 65px !important; }

.T15 {
  top: 25px !important; }

.T23 {
  top: 30px !important; }

.L0 {
  left: 0px !important; }

.R_auto {
  right: auto !important; }

.L_auto {
  left: auto !important; }

.L50 {
  left: 50px !important; }

.L70 {
  left: 70px !important; }

.L58 {
  left: 58px !important; }

.L85 {
  left: 85px !important; }

.L75 {
  left: 75px !important; }

.L100 {
  left: 100px !important; }

.L105 {
  left: 105px !important; }

.L110 {
  left: 110px !important; }

.L120 {
  left: 120px !important; }

.L130 {
  left: 130px !important; }

.L140 {
  left: 140px !important; }

.L145 {
  left: 145px !important; }

.L150 {
  left: 150px !important; }

.lf175 {
  left: 175px !important; }

.t20 {
  top: 20px !important; }

.R10 {
  right: 10px !important; }

.ovh {
  overflow: hidden; }

.a-disabled {
  pointer-events: none;
  background: #75787d !important;
  color: #fff !important; }

.bg_w {
  background-color: white !important; }

.hide {
  display: none; }

.dsply_b {
  display: block !important; }

.pos_rel {
  position: relative; }

.txt-c {
  text-align: center; }

.flt-n {
  float: none; }

.brd_t7 {
  border-bottom: #efefef solid 7px !important; }

.no_bg, section .auto_users ul li {
  background-color: #f8f8f8 !important; }

.no-bdr {
  border: 0px !important; }

.no-bdr-no {
  border: none !important; }

.no-bdr-L {
  border-left: none !important; }

.no-bdr-R {
  border-right: none !important; }

.no-bdr-B {
  border-bottom: none !important; }

.no-bdr-t {
  border-top: none !important; }

.brd_t {
  border-top: #e6e7e8 solid 1px; }

.brd_L {
  border-left: 0px !important; }

.brd_R {
  border-right: 0px !important; }

.brd_B {
  border-bottom: 0px !important; }

.brd_r2 {
  border-right: #edeeef solid 1px !important; }

.brd_lw {
  border-left: #ffffff solid 3px !important; }

.brd_bw {
  border-bottom: #ffffff solid 1px !important; }

.brd_b2w {
  border-bottom: #ffffff solid 2px !important; }

.border_Right {
  border-right: 1px solid #efefef !important; }

.brd_b1 {
  border-bottom: #efefef solid 1px !important; }

.bdr_bottom, .bulk_popup h1, .droid_heading {
  border-bottom: #e6e7e8 solid 1px; }

.bdr_right_tbl {
  border-right: #efefef solid 1px !important; }

.txt_14_r {
  font: 14px "droid_sansregular" !important;
  color: #323641;
  text-decoration: underline; }

.txt_14_b {
  font: 14px "droid_sansbold" !important;
  color: #6d6f75 !important; }

.txt_16_b, .wrapper-dropdown-3 .dropdown li a, section .tab_panel ul li.tab > a, section .data_listing_header, .pr_inner_list td, .mainContainer ul li.tab-programs a {
  font: 16px "droid_sansbold" !important;
  color: #323641; }

.txt_15_b {
  font: 14px "droid_sansbold" !important;
  color: #323641;
  text-decoration: none !important; }

.txt_17_b {
  font: 17px "droid_sansbold";
  color: #323641; }

.txt_16_r, section .tab_panel ul li a.view, section .data_listing ul li, .bulk_popup ul li, .tab_gen_info article.left p.list, .mainContainer ul li a.view {
  font: 15px "droid_sansregular" !important;
  color: #323641; }

.txt_15_r {
  font: 15px "droid_sansregular" !important; }

.txt_18_b, .tab_gen_info article.left p label, .profile_details .prsn_info label, .contact_info .prsn_info label, .lbL_user, .txt-red, .contact_listing a {
  font: 18px "droid_sansbold";
  color: #323641; }

.txt_18_r, .tab_gen_info article.left p, .create_inpt, .create_area {
  font: 18px "droid_sansregular" !important;
  color: #323641 !important; }

.txt_22_b, .tab_gen_info .sub_heading {
  font: 22px "droid_sansbold";
  color: #323641; }

.txt_24_r {
  font: 24px "droid_sansregular";
  color: #323641; }

.txt_28_b {
  font: 28px "Museo Slab 900";
  color: #403f3c;
  text-align: left; }

.txt_32_b, .bulk_popup h1, .droid_heading {
  font: 28px "Museo Slab 900";
  color: #403f3c;
  text-align: left; }

.open_17_r {
  font: 17px "open_sansregular"; }

.drd-b {
  font-family: "droid_sansbold" !important; }

.link_txt {
  color: #0e1f5b;
  font-family: 'open_sansregular';
  font-size: 16px;
  text-decoration: underline; }

.Lht19 {
  line-height: 19px !important; }

.Lht29 {
  line-height: 29px !important; }

.Lht23 {
  line-height: 23px !important; }

.Lht26 {
  line-height: 26px !important; }

.Lht30 {
  line-height: 30px !important; }

.Lht62 {
  line-height: 62px !important; }

.txt-2cc {
  color: #2c6580 !important; }

.ellipsis {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important; }

.pos_rel {
  position: relative; }

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

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

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

.txt-left {
  text-align: left !important; }

.flt-n {
  float: none !important; }

.fltL {
  float: left !important; }

.fltR {
  float: right !important; }

h1, h2, h3, h4, ul, li, p {
  margin: 0px;
  padding: 0px; }

.clr {
  clear: both; }

a {
  text-decoration: none;
  color: #323641; }

html {
  position: relative;
  min-height: 100%; }

body {
  font: 18px "droid_sansregular";
  color: #403f3c;
  margin: 0px;
  background-color: #f6f8f3; }

.container {
  width: 100%;
  background-color: #f6f8f3;
  height: auto;
  overflow: hidden; }

header h1 {
  font: 22px "droid_sansbold";
  color: #403f3c;
  text-align: center;
  line-height: 50px; }

header .logo {
  width: 277px;
  height: 56px;
  background: url(../images/logo.png) no-repeat -13px 2px;
  background-size: 259px 52px;
  float: left;
  margin: 19px 0 0 2px; }

header section {
  height: 96px;
  margin-bottom: 2px;
  background: #383b44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #383b44), color-stop(100%, #2e2e33));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #383b44 0%, #2e2e33 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #383b44 0%, #2e2e33 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$light_gray', endColorstr='$dark_gray',GradientType=0 );
  /* IE6-9 */ }

header section div.bg {
  background: #0d2655;
  width: 100%;
  height: 96px; }

header .wrapper {
  width: 1230px;
  margin: auto; }
  header .wrapper:after {
    content: "";
    display: block;
    clear: both; }

header ul {
  float: right;
  padding: 0 5px 0 0; }

header ul li {
  list-style-type: none;
  display: inline-block;
  margin: 22px 15px; }

header ul li a {
  font: 13px "droid_sansbold";
  color: #ffffff;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  text-transform: uppercase; }

header section.notfy-panel {
  padding: 10px;
  box-shadow: 0px 1px 2px #f2f2f2;
  background: #ffffff;
  height: auto; }
  header section.notfy-panel div.notfy-inner {
    width: 1230px;
    margin: auto;
    position: relative; }
  header section.notfy-panel .user_info {
    float: left;
    margin-right: 41px; }
  header section.notfy-panel p.thumb {
    float: left;
    margin-right: 8px; }
  header section.notfy-panel p.thumb img {
    border-radius: 100px;
    border: #ffffff 5px solid;
    box-shadow: 0px 0px 2px #929292;
    width: 44px;
    height: 44px; }
  header section.notfy-panel p.welcome-txt {
    float: left;
    font: 14px "droid_sansbold";
    color: #323641;
    padding-top: 8px; }
  header section.notfy-panel p.welcome-txt span {
    font: 12px "droid_sansregular";
    color: #6d6f75; }
  header section.notfy-panel p.welcome-txt span.name {
    font: 14px "droid_sansbold";
    display: block;
    color: #323641;
    margin: -2px 0 0; }
  header section.notfy-panel p.welcome-txt span.name a {
    float: left;
    margin-right: 5px;
    font-size: 13px; }
  header section.notfy-panel p.welcome-txt span.name i {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    float: left;
    border-color: #323641 transparent transparent transparent;
    margin-top: 6px; }

header .search_input {
  width: 307px;
  height: 31px;
  float: left;
  margin-top: 9px;
  position: relative;
  visibility: hidden; }

header .search_input input {
  width: 250px;
  height: 31px;
  border: #eaeaea 2px solid;
  border-radius: 50px;
  outline: none;
  padding: 0px 44px 0 38px;
  font: 13px "droid_sansregular";
  color: #6d6f75;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box; }

header .search_input input::-webkit-input-placeholder {
  font: 13px "droid_sansregular";
  color: #6d6f75; }

header i.search_bg {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 11px;
  left: 15px; }

header .search_input a {
  font: 14px "droid_sansbold";
  color: #ff7575;
  display: block;
  position: absolute;
  top: 6px;
  right: -15px;
  border-left: 2px #eaeaea solid;
  padding: 3px 0 3px 4px; }

header .msg_panel {
  float: right;
  height: 30px;
  margin-top: 12px;
  padding-top: 4px;
  padding-right: 6px; }

header .msg_panel a.notify i.msg,
header .msg_panel a.notify i {
  display: block;
  width: 15px;
  height: 15px;
  float: left;
  background-position: 0 -21px;
  margin: 3px 10px 0 0; }

header .msg_panel a.notify i.msg {
  background-position: 0 -38px;
  height: 15px;
  width: 17px;
  margin: 3px 10px 0 0; }

header .msg_panel a.notify i.msg:hover {
  background-position: -19px -40px;
  margin: 5px 10px 0 0; }

header .msg_panel a.notify {
  font: 12px "droid_sansregular";
  color: #323641;
  float: left;
  margin-right: 26px; }

header .msg_panel a.notify span {
  font: 16px "droid_sansbold";
  color: #ff7575; }

header .msg_panel a.notify:hover {
  color: #ff7575; }

header .msg_panel a.notify:hover i.msg {
  background-position: -19px -40px;
  height: 15px;
  width: 17px;
  margin: 5px 10px 0 0; }

header .msg_panel a.notify:hover i {
  background-position: -19px -21px;
  margin: 3px 10px 0 0; }

header .msg_panel a.notify i.alrt {
  display: block;
  width: 15px;
  height: 15px;
  float: left;
  background-position: -40px -156px;
  margin: 3px 10px 0 0; }

header .msg_panel a.notify:hover i.alrt {
  background-position: -56px -156px; }

header .msg_panel a.msgs i {
  display: block;
  width: 17px;
  height: 12px;
  float: left;
  background-position: 0 -40px;
  margin: 5px 10px 0 0; }

header .msg_panel a.msgs:hover i {
  background-position: -19px -40px; }

header .msg_panel a.calendar i {
  display: block;
  width: 16px;
  height: 14px;
  float: left;
  background-position: 0 -56px;
  margin: 0 10px 0 0; }

header .msg_panel a.calendar:hover i {
  background-position: -19px -56px; }

header .arrow_box {
  position: absolute;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  width: 435px;
  top: 45px;
  right: 90px;
  z-index: 9999;
  box-shadow: 0px 1px 2px #f2f2f2; }

header .arrow_box:after, header .arrow_box:before {
  bottom: 100%;
  left: 90%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

header .arrow_box:after {
  border-color: rgba(248, 248, 248, 0);
  border-bottom-color: #f8f8f8;
  border-width: 10px;
  margin-left: -10px; }

header .arrow_box:before {
  border-color: rgba(238, 238, 238, 0);
  border-bottom-color: #eeeeee;
  border-width: 11px;
  margin-left: -11px; }

header .arrow_box ul {
  margin: 0px;
  width: 100%;
  padding: 0; }

header .arrow_box ul li {
  display: block;
  list-style-type: none;
  background-color: #efefef;
  padding-left: 20px;
  padding-right: 15px;
  margin: 0px !important; }

header .arrow_box ul li div.listing {
  border-bottom: #e6e7e8 solid 1px;
  padding: 12px 0px 8px 0px; }

header .arrow_box ul li div.listing img {
  float: left;
  margin-right: 12px; }

header .arrow_box ul li div.listing p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 17px; }

header .arrow_box ul li div.listing p span a {
  text-decoration: none;
  color: #6d6f75;
  margin: 0px;
  padding: 0px;
  line-height: 16px;
  font: 14px "droid_sansbold" !important;
  text-transform: none; }

header .arrow_box ul li div.listing p span {
  font: 14px "droid_sansbold"; }

header .msgs_txt_link {
  height: 42px;
  padding: 0px 17px; }

header .msgs_txt_link a.all_msgs {
  float: left;
  font: 14px "droid_sansbold";
  color: #ff7575;
  text-align: left;
  text-decoration: none; }

header .msgs_txt_link a.comp_msgs {
  float: right;
  font: 14px "droid_sansbold";
  color: #ff7575;
  text-align: left;
  text-decoration: none; }

header .msgs_txt_link a.comp_msgs i {
  width: 18px;
  height: 19px;
  float: right;
  background-position: 0 -258px;
  margin-left: 5px;
  margin-top: -1px; }

section .breadcrumb {
  width: 1230px;
  margin: auto; }

section .breadcrumb ul {
  float: left;
  padding: 7px 10px 16px 0; }

section .breadcrumb ul li {
  float: left;
  list-style-type: none; }

section .breadcrumb ul li.arrow {
  padding-top: 5px;
  margin-right: 7px; }

section .breadcrumb ul li a {
  font: 12px/20px "droid_sansregular";
  color: #999999;
  padding: 3px 9px 0 0;
  display: block; }
  section .breadcrumb ul li a:hover {
    text-decoration: underline; }

section .breadcrumb ul li i {
  width: 8px;
  height: 18px;
  display: block;
  background-position: 0 -156px; }

section .msgs_box {
  padding-top: 13px;
  padding-bottom: 30px;
  box-shadow: 0 1px 2px #f2f2f2;
  background: #ffffff;
  width: 1230px;
  margin: auto;
  margin-bottom: 30px; }

section .msgs_links {
  border-bottom: #e6e7e8 solid 1px;
  padding: 0 20px; }

section .msgs_links h1 {
  font: 28px/36px "Museo Slab 900", sans-serif;
  color: #403f3c;
  text-align: left;
  float: left;
  padding-bottom: 12px; }

section .msgs_links ul {
  float: right;
  margin-top: 8px; }

section .msgs_links ul li {
  display: inline;
  margin-left: 38px; }

section .msgs_links ul li a {
  font: 13px "droid_sansregular";
  color: #323641; }

section .msgs_links ul li a:hover {
  color: #ff7575; }

section .msgs_links li a span {
  font: 16px "droid_sansbold";
  color: #ff7575; }

section .msgs_links li a i.arrow_msg {
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #6d6f75;
  display: inline-block;
  margin-left: 6px; }

section .msgs_links li a:hover i.arrow_msg {
  border-color: transparent transparent transparent #ff7575; }

section .drop_downs {
  float: left;
  width: 100%;
  border-bottom: #e6e7e8 solid 1px; }

section .wrapper-demo {
  float: left;
  margin: 22px 0 0 22px; }

section .search_msg {
  float: right; }
  section .search_msg ul.holder {
    box-shadow: none !important; }

section .search_msg i {
  width: 17px;
  height: 16px;
  display: block;
  background-position: -16px -1px;
  float: right;
  margin-top: 5px; }
  section .search_msg i:hover {
    background-position: -77px -3px; }

section .copmose_panel {
  width: 100%; }

section .copmose_panel a.del_btn {
  display: block;
  float: left;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 40px 9px 20px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 0;
  line-height: 21px; }

section .copmose_panel a.del_btn:hover {
  background: #dbe3e8; }

section .copmose_panel a.del_btn i {
  width: 21px;
  height: 21px;
  background-position: 0px -101px;
  display: block;
  float: left;
  margin-right: 9px; }

section .copmose_panel a.compse_btn {
  display: block;
  float: right;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 28px 9px 28px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 21px 0;
  line-height: 21px; }

section .copmose_panel a.compse_btn:hover {
  background: #dbe3e8; }

section .listing_bg {
  background-color: #ffffff !important;
  box-shadow: 0px 1px 2px #f2f2f2; }

section .user_listing {
  background-color: #efefef;
  margin: auto;
  width: 1188px;
  padding: 21px;
  position: relative;
  margin-bottom: 10px; }

section .user_listing i.attachment {
  width: 29px;
  height: 26px;
  background-position: -231px -50px;
  position: absolute;
  left: 20px;
  top: 57px; }

section .user_listing i.attachment:hover {
  background-position: -235px -162px; }

section .user_listing p.user_img {
  float: left;
  padding-left: 3px;
  margin-right: 17px; }

section .user_listing div.user_Data {
  float: left;
  width: 810px; }

section .user_listing div.rply_icons {
  width: 120px;
  height: 30px;
  position: absolute;
  bottom: 30px;
  right: 9px;
  display: none; }

section .user_listing div.rply_icons i.reply {
  width: 30px;
  height: 21px;
  background-position: -231px -5px;
  float: left;
  margin-right: 15px; }

section .user_listing div.rply_icons i.reply:hover {
  cursor: pointer;
  background-position: -231px -28px; }

section .reply_box {
  position: absolute;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  width: 115px;
  height: 100px;
  top: -110px;
  left: -51px;
  z-index: 9999;
  box-shadow: 1px 1px 0px #dddddd;
  border-radius: 5px;
  display: none;
  text-transform: lowercase; }

section .reply_box:after, section .arrow_box:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

section .reply_box:after {
  border-color: rgba(248, 248, 248, 0);
  border-top-color: #f8f8f8;
  border-width: 10px;
  margin-left: -10px; }

section .reply_box:before {
  border-color: rgba(238, 238, 238, 0);
  border-top-color: #eeeeee;
  border-width: 11px;
  margin-left: -11px; }

section .reply_box ul {
  margin: 0px;
  padding: 0px; }

section .reply_box ul li {
  list-style-type: none;
  border-bottom: #e6e7e8 solid 1px;
  padding: 5px 10px 7px 20px; }

section .reply_box ul li a {
  font: 14px "droid_sansbold";
  color: #6d6f75;
  text-decoration: none; }

section .user_listing div.rply_icons i.del {
  width: 20px;
  height: 27px;
  background-position: -77px -186px;
  float: left;
  margin-right: 15px; }

section .user_listing div.rply_icons i.del:hover {
  cursor: pointer;
  background-position: -77px -158px; }

section .user_listing div.rply_icons i.print {
  width: 25px;
  height: 22px;
  background-position: -137px -33px;
  float: left;
  margin-right: 15px;
  position: relative; }
  section .user_listing div.rply_icons i.print:hover {
    background-position: -40px -60px; }

section i.print:hover .reply_box {
  display: block; }

section .user_listing div.rply_icons i.print:hover {
  cursor: pointer; }

section .user_Data h3 {
  font: 16px "droid_sansbold";
  color: #323641;
  margin-bottom: 15px; }

section .user_Data h2 {
  font: 18px "droid_sansbold";
  color: #323641;
  margin-bottom: 12px;
  padding-top: 10px; }

section .user_Data h2 span {
  display: block;
  float: left;
  margin-right: 15px; }

section .user_Data h2 span.member {
  background-color: #efefef;
  border-radius: 4px;
  display: block;
  float: left;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  padding: 5px 20px; }

section .user_Data p.place {
  font: 16px "droid_sansregular"; }

section .user_Data p.date {
  width: 125px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 25px;
  font: 14px "droid_sansregular";
  color: #6d6f75; }

section a.user_link {
  font: 16px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  line-height: 23px;
  display: block;
  margin-bottom: 10px; }

section a.user_link i {
  width: 23px;
  height: 23px;
  display: block;
  float: left;
  background-position: 0 -75px;
  margin-right: 8px; }

section .user_Data p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  margin-bottom: 15px;
  line-height: 20px;
  word-wrap: break-word;
  white-space: pre-wrap; }

section .contact_data {
  font: 16px "droid_sansregular";
  color: #6d6f75;
  float: left; }

section .loadmore_panel {
  margin: auto;
  width: 1130px !important; }

section .load_more_btn {
  display: block;
  float: left;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 28px 8px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 21px 0;
  line-height: 21px; }
  section .load_more_btn:hover {
    background: #dbe3e8; }

section .msgs_details_box {
  padding-top: 10px;
  background: #ffffff;
  width: 1230px;
  margin: auto;
  margin-bottom: 0px; }

section .urgent_txt {
  font: 18px "droid_sansbold" !important;
  color: #323641 !important;
  text-decoration: none !important;
  float: left; }

section .msgs_links i.right_arrow {
  width: 27px;
  height: 27px;
  float: right;
  background-position: 0 -206px;
  display: block;
  cursor: pointer; }

section .msgs_links i.left_arrow {
  width: 27px;
  height: 27px;
  float: right;
  background-position: 0 -178px;
  display: block;
  margin-right: 15px;
  cursor: pointer; }

section .to_txt a {
  text-decoration: underline !important;
  color: #2c6580; }

section .loadmore_panel ul {
  float: left; }

section .loadmore_panel ul li {
  list-style-type: none;
  display: inline-block; }

section .loadmore_panel ul li a {
  display: block;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .loadmore_panel ul li a.reply_btn {
  border-radius: 4px;
  background-color: #0f1f5b;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #ffffff;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .loadmore_panel ul li a.reply_btn.normal-btn {
  background: none;
  box-shadow: none;
  color: #6d6f75;
  padding: 0;
  margin-left: 21px; }

section .loadmore_panel ul li a.reply_btn.normal-btn:hover {
  color: #3f3f42;
  background: none; }

section .loadmore_panel ul li a.reply_btn:hover {
  background: #01baf2; }

section .loadmore_panel ul li a:hover {
  border-radius: 4px;
  background-color: #0f1f5b;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #ffffff;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .loadmore_panel ul li a.slected {
  border-radius: 4px;
  background-color: #0f1f5b;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 38px 9px 38px;
  font: 14px "droid_sansbold";
  color: #ffffff;
  margin: 16px 21px 0 0;
  line-height: 21px; }

section .compose_msg {
  float: left; }

section .auto_tags, section .auto_tag_txt {
  font: 13px "droid_sansregular";
  text-decoration: none;
  background-color: #ecf0f1;
  border-radius: 30px;
  padding: 3px 4px 3px 10px;
  color: #6d6f75;
  margin-right: 5px; }

section .auto_tags i, section .auto_tag_txt i {
  background-color: #d2dbe0;
  border-radius: 50px;
  font: 13px "droid_sansregular";
  color: #6d6f75;
  padding: 0px 4px;
  margin-left: 4px; }

section .auto_tag_txt {
  padding: 7px 7px 7px 10px;
  font: 14px "droid_sansregular";
  float: left;
  margin-bottom: 13px;
  margin-left: 7px; }

section .auto_tag_txt i.attach {
  width: 19px;
  height: 18px;
  background-position: 5px -237px;
  float: left;
  background-color: transparent;
  margin-right: 5px; }

section .user_Data a.cc {
  float: right;
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  margin-right: 10px; }

section .user_Data a.bcc {
  float: right;
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline; }

section .user_Data a.advance_txt {
  float: left;
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  padding-left: 15px; }

section .user_Data input.compose_inpt {
  width: 750px;
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 20px; }

section .user_Data input::-webkit-input-placeholder {
  font: 14px "droid_sansregular" !important; }

section .user_Data textarea.compose_area {
  width: 750px;
  height: 200px;
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 20px;
  background-color: transparent;
  border: 0px;
  outline: none;
  resize: none; }

section .user_Data textarea::-webkit-input-placeholder {
  font: 14px "droid_sansregular" !important; }

section .attach_pan {
  width: 765px;
  border-top: #e1e2e0 solid 1px;
  padding: 7px 12px 5px 16px;
  margin-left: -9px; }

section .attach_pan a.link-1 {
  font: 14px "droid_sansregular";
  color: #2c6580;
  text-decoration: underline;
  margin-right: 15px;
  float: left;
  padding-top: 4px; }

section .reply_msg_panel {
  width: 1305px;
  border-top: #cbccc9 1px solid;
  margin-left: -21px; }

section .auto_users {
  position: absolute;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  width: 285px;
  left: 150px;
  top: 0px;
  z-index: 9999;
  box-shadow: 0px 1px 2px #f2f2f2; }

section .auto_users:after, section .auto_users:before {
  right: 100%;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

section .auto_users:after {
  border-color: rgba(248, 248, 248, 0);
  border-right-color: #f8f8f8;
  border-width: 10px;
  margin-top: -10px; }

section .auto_users:before {
  border-color: rgba(238, 238, 238, 0);
  border-right-color: #eeeeee;
  border-width: 11px;
  margin-top: -11px; }

section .auto_users ul {
  margin: 0px;
  width: 100%; }

section .auto_users ul li {
  display: block;
  list-style-type: none;
  padding-left: 20px;
  padding-right: 15px;
  margin: 0px !important; }

section .auto_users ul li:hover {
  background-color: #efefef !important; }

section .auto_users ul li div.listing {
  border-bottom: #e6e7e8 solid 1px;
  padding: 12px 0px 8px 0px; }

section .auto_users ul li div.listing img {
  float: left;
  margin-right: 12px; }

section .auto_users ul li div.listing p {
  font: 14px "droid_sansregular";
  color: #6d6f75;
  line-height: 17px; }

section .auto_users ul li div.listing p span a {
  text-decoration: none;
  color: #6d6f75;
  margin: 0px;
  padding: 0px;
  line-height: 16px;
  font: 14px "droid_sansbold" !important;
  text-transform: none; }

section .auto_users ul li div.listing p span {
  font: 14px "droid_sansbold"; }

section .tab_panel {
  width: 1180px;
  border: #e4e4e4 solid 1px;
  margin: auto;
  padding: 20px 22px 22px;
  margin-top: 40px; }

section .tab_panel ul {
  float: left;
  margin-top: -65px; }

section .tab_panel ul li.tab_sm {
  width: 120px !important; }

section .tab_panel ul li.tab_lg {
  width: 200px !important; }

section .tab_panel ul li.tab {
  float: left;
  list-style-type: none;
  background-color: #e6e7e8;
  margin-right: 5px;
  width: 136px;
  border-top: #e6e7e8 solid 5px;
  border-right: #e6e7e8 solid 1px;
  border-left: #e6e7e8 solid 1px;
  position: relative;
  min-height: 40px; }

section .tab_panel ul li.tab.selected {
  background-color: #ffffff;
  border-top: #0e1f5b solid 5px;
  border-right: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px; }

section .tab_panel ul li.tab:hover {
  background-color: #ffffff;
  border-top: #0e1f5b solid 5px;
  border-right: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px; }

section .tab_panel ul li.tab > a {
  display: block;
  padding: 9px 0 11px;
  text-align: center; }

section .tab_panel ul li a.view {
  display: block;
  padding: 12px 0px 13px;
  text-align: left;
  color: #2c6580;
  text-decoration: underline; }

section .data_listing {
  border-left: #efefef solid 1px;
  border-bottom: #efefef solid 7px;
  border-right: 0px;
  width: 1130px;
  background-color: #ffffff;
  margin-top: 15px;
  overflow: hidden; }
  section .data_listing:after {
    clear: both;
    display: block;
    content: ""; }

section .data_listing_header {
  background-color: #efefef;
  color: #393a3c;
  padding: 13px 0px; }

section .data_listing_header p.heading_1 {
  position: relative;
  width: 138px;
  padding-left: 17px;
  float: left; }

section .data_listing ul {
  margin: 0px;
  padding: 0px; }

section .data_listing ul li div.actions {
  display: none;
  height: 40px; }

section .data_listing ul:hover li div.actions {
  display: block; }

section .data_listing ul.bg li.last {
  border-right-color: #f6f8fa !important; }

section .data_listing ul li {
  background-color: transparent !important;
  border: none !important;
  line-height: 40px !important;
  border-right: #efefef solid 1px !important; }

section section .tab_panel ul li.txt-c a {
  color: #15448a !important;
  font: 16px "droid_sansregular";
  text-decoration: underline; }

section section .tab_panel ul li.txt-L a {
  color: #15448a !important;
  font: 16px "droid_sansregular";
  text-decoration: underline;
  text-align: left; }

section .data_listing ul li.last {
  border-right: #ffffff solid 1px !important;
  margin-right: 0px !important;
  padding-left: 6px; }

section .download2 {
  width: 22px;
  height: 27px;
  background-position: -112px -48px;
  float: left;
  margin: 3px 0px 9px 25px;
  position: relative; }

section .download2:hover {
  cursor: pointer;
  background-position: -199px -48px; }

section .printer {
  width: 29px;
  height: 27px;
  background-position: -164px -48px;
  float: left;
  margin: 3px 50px 9px 25px;
  position: relative; }

section .printer:hover {
  cursor: pointer;
  background-position: -165px -81px; }

section .eye {
  width: 29px;
  height: 17px;
  background-position: -74px -51px;
  float: left;
  margin: 11px 0px 9px 25px;
  position: relative; }

section .eye:hover {
  cursor: pointer;
  background-position: -74px -73px; }

section .downloadnew {
  width: 18px;
  height: 21px;
  background-position: -101px -191px;
  float: left;
  margin: 11px 0px 9px 25px;
  position: relative; }

section .downloadnew:hover {
  cursor: pointer;
  background-position: -126px -191px; }

section .people-share {
  background-position: -153px -3px;
  float: left;
  margin: 11px 0px 9px 25px;
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer; }

section .people-share:hover {
  background-position: -191px -3px; }

section .left-arrow {
  width: 22px;
  height: 34px;
  background-position: -108px -85px;
  float: left;
  margin: 0px 0px 0px 25px;
  position: relative; }

section .left-arrow:hover {
  cursor: pointer; }

section .right-arrow {
  width: 22px;
  height: 34px;
  background-position: -138px -85px;
  float: left;
  margin: 0px 0px 0px 25px;
  position: relative; }

section .right-arrow:hover {
  cursor: pointer; }

section .errow-down {
  width: 20px;
  height: 14px;
  background-position: -68px -28px;
  float: left;
  margin: 11px 0px 11px 25px;
  position: relative; }

section .errow-down:hover {
  cursor: pointer; }

section .errow-up {
  width: 20px;
  height: 14px;
  background-position: -110px -29px;
  float: left;
  margin: 11px 0px 11px 25px;
  position: relative; }

section .errow-up:hover {
  cursor: pointer; }

section .infomation {
  width: 19px;
  height: 19px;
  background-position: -162px -290px;
  float: left;
  margin: 11px 0px 11px 25px;
  position: relative; }

section .infomation:hover {
  cursor: pointer; }

section .clock {
  width: 28px;
  height: 28px;
  background-position: -114px -339px;
  float: left;
  margin: 11px 0px 11px 25px;
  position: relative; }

section .clock:hover {
  cursor: pointer;
  background-position: -115px -374px; }

section .star {
  width: 29px;
  height: 27px;
  background-position: -75px -277px;
  float: left;
  margin: 11px 0px 11px 25px;
  position: relative; }

section .star:hover {
  cursor: pointer;
  background-position: -75px -312px; }

section .edit {
  width: 22px;
  height: 22px;
  background-position: -40px -105px;
  float: left;
  margin: 8px 0px 10px 33px;
  position: relative; }

section .edit:hover {
  cursor: pointer;
  background-position: -71px -101px; }

section .download {
  width: 32px;
  height: 22px;
  background-position: -67px -130px;
  float: left;
  margin: 8px 0px 10px 33px;
  position: relative; }

section .download:hover {
  cursor: pointer;
  background-position: -109px -131px; }

section .delete {
  width: 16px;
  height: 24px;
  background-position: -77px -186px;
  float: left;
  margin: 5px 0px 10px 31px;
  position: relative; }

section .delete:hover {
  cursor: pointer;
  background-position: -77px -158px; }

section .up_arrow {
  width: 10px;
  height: 6px;
  background-position: -27px -158px;
  position: absolute;
  top: 4px;
  right: 46px; }

section .dwn_arrow {
  width: 10px;
  height: 6px;
  background-position: -27px -166px;
  position: absolute;
  top: 12px;
  right: 46px; }

section .up_arrow_only {
  width: 10px;
  height: 6px;
  background-position: -27px -158px;
  position: absolute;
  top: 5px;
  right: 46px;
  cursor: pointer; }

section .dwn_arrow_only {
  width: 10px;
  height: 6px;
  background-position: -27px -166px;
  position: absolute;
  top: 7px;
  right: 46px;
  cursor: pointer; }

section .passage {
  width: 18px;
  height: 25px;
  background-position: -65px -221px;
  float: left;
  margin: 5px 0px 11px 31px;
  position: relative; }
  section .passage:hover {
    background-position: -93px -219px; }

.login_container {
  width: 300px;
  min-height: 320px;
  margin: auto;
  background-color: #ffffff;
  margin-top: 217px;
  padding: 50px 60px 50px;
  height: auto; }
  .login_container .login_msg {
    width: 300px; }
  .login_container .wrapper-dropdown-4, .login_container .wrapper-dropdown-5 {
    width: 268px;
    margin-top: 40px;
    margin-left: -12px;
    padding-left: 23px; }
  .login_container .wrapper-dropdown-4 input, .login_container .wrapper-dropdown-5 input {
    width: 250px;
    border: 0px;
    line-height: 25px;
    outline: none;
    background-color: transparent;
    height: 25px !important;
    color: #000 !important; }
  .login_container .login_btn {
    background-color: #2c6580;
    border-radius: 4px;
    border: 0px;
    font: 18px "open_sansregular";
    color: #ffffff;
    width: 100%;
    padding: 8px 0px;
    margin-top: 3px;
    outline: none;
    cursor: pointer;
    margin-bottom: 21px; }
  .login_container .remember {
    font: 14px "droid_sansregular";
    color: #6d6f75; }
  .login_container .remember input {
    float: left;
    margin-right: 7px; }
  .login_container a.reset_pass {
    display: block;
    float: right;
    font: 14px "droid_sansregular";
    color: #6d6f75;
    text-decoration: underline; }

.alert-danger {
  font: 14px "droid_sansregular";
  color: red;
  padding-top: 20px; }
  .alert-danger ul {
    margin-left: 15px; }
  .alert-danger ul li {
    margin-left: 15px;
    list-style-type: none;
    margin-bottom: 7px; }

section.acount_wrapper {
  width: 1305px;
  margin: auto;
  background-color: transparent; }
  section.acount_wrapper .profile_pan {
    box-shadow: 0px 1px 2px #f2f2f2;
    background: #ffffff;
    width: 637px;
    float: left; }
  section.acount_wrapper .contact_pan {
    width: 637px;
    float: right; }
  section.acount_wrapper .profile_wrapper {
    width: 637px;
    float: left; }
  section.acount_wrapper .heading_section {
    border-bottom: #e6e7e8 solid 1px;
    padding: 8px 20px; }
  section.acount_wrapper .h1_heading {
    font: 32px "Museo Slab 900";
    color: #403f3c;
    text-align: left;
    float: left; }
  section.acount_wrapper .edit_btn {
    display: block;
    float: right;
    border-radius: 4px;
    background-color: #ecf0f1;
    -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
    -moz-box-shadow: 0px 3px 0px 0px #dddddd;
    box-shadow: 0px 3px 0px 0px #dddddd;
    padding: 7px 35px 6px 35px;
    font: 14px "droid_sansbold";
    color: #6d6f75;
    line-height: 21px;
    margin: 1px 0px 0;
    border: 0px;
    outline: none;
    cursor: pointer; }
  section.acount_wrapper .profile_Det {
    padding: 29px 20px; }
  section.acount_wrapper .profile_Det img {
    float: left;
    margin-right: 23px; }
  section.acount_wrapper .profile_Det article {
    float: left; }
  section.acount_wrapper .profile_Det article h3 {
    font: 26px "droid_sansregular";
    color: #e65b45;
    line-height: 21px; }
  section.acount_wrapper .profile_Det article p {
    line-height: 25px; }
  section.acount_wrapper .profile_Det article div.info_list {
    border-bottom: #e6e7e8 solid 1px;
    padding: 14px 0px 11px 0px; }
  section.acount_wrapper .profile_Det article div.info_list p.name {
    font: 18px "droid_sansbold";
    color: #403f3c;
    float: left; }
  section.acount_wrapper .profile_Det article div.info_list p.name span {
    font: 18px "droid_sansregular";
    color: #403f3c;
    line-height: 26px;
    display: block;
    padding-left: 16px;
    padding-top: 14px; }
  section.acount_wrapper .profile_Det article div.info_list p a {
    font: 16px "droid_sansregular";
    color: #2c6580;
    text-decoration: underline; }
  section.acount_wrapper .profile_Det article div.info_list p.det {
    font: 18px "droid_sansregular";
    color: #403f3c;
    float: left;
    line-height: 26px; }
  section.acount_wrapper .profile_Det article div.info_list p.msg {
    font: 16px "droid_sansregular";
    color: #6d6f75;
    float: left;
    line-height: 29px; }
  section.acount_wrapper .heading_section p.name_heading, section.acount_wrapper .heading_section p.hour_heading {
    font: 18px "droid_sansbold";
    color: #403f3c;
    float: left; }
  section.acount_wrapper .heading_Span {
    display: block;
    float: left; }
  section.acount_wrapper .sm_Arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    float: left;
    border-color: #323641 transparent transparent transparent;
    margin-top: 6px; }

.bulk_popup {
  width: 640px;
  min-height: 200px;
  height: auto;
  background-color: #ffffff;
  margin: auto; }
  .bulk_popup h1 {
    line-height: 65px;
    padding-left: 20px; }
  .bulk_popup ul {
    margin: 24px 50px; }
  .bulk_popup ul li {
    display: block;
    line-height: 30px !important; }
  .bulk_popup ul li a {
    color: #2c6580;
    text-decoration: underline; }

.droid_heading {
  line-height: 45px;
  padding-left: 20px; }

.font_droid {
  font: 18px "droid_sansbold"; }

footer {
  bottom: 0;
  height: 94px;
  left: 0;
  position: absolute;
  width: 100%; }
  footer div.wrapper {
    width: 100%;
    height: auto;
    background: #0d2655; }
  footer div.inner-wrapper {
    width: 1230px;
    margin: auto;
    padding: 41px 0 20px;
    overflow: hidden;
    height: auto; }
  footer .footer_txt, footer p.left, footer p.right {
    font: 12px "droid_sansregular";
    color: #ffffff;
    padding: 0 5px 0 6px;
    margin: 0 0 20px; }
  footer p.left {
    float: left; }
  footer p.right {
    float: right; }

.create_new_btn, .upload_btn, .add_btn {
  display: block;
  float: left;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 9px 33px 9px 33px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  margin: 20px 17px 0;
  line-height: 21px;
  cursor: pointer; }
  .create_new_btn:hover, .upload_btn:hover, .add_btn:hover {
    background-color: #dbe3e8; }

.upload_btn {
  background-color: #0e1f5b;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 0 0 #b4b4b4; }

.upload_btn:hover {
  background-color: #01baf2; }

.btn-create-narrow {
  padding: 7px 41px; }

.add_btn {
  margin: 0px;
  font: 28px "droid_sansbold";
  padding: 2px 12px 2px 12px;
  margin-left: 13px;
  cursor: pointer; }

.cncl_link {
  color: #2c6580;
  text-decoration: underline;
  font: 14px "droid_sansregular";
  display: block;
  padding-left: 14px;
  padding-top: 53px;
  float: left; }

.tab_gen_info {
  padding: 13px 24px; }
  .tab_gen_info h3 i.up_mark {
    width: 10px;
    height: 6px;
    background-position: -28px -114px;
    float: left;
    margin-right: 7px;
    margin-top: 11px; }
  .tab_gen_info h3 i.side_mark {
    width: 6px;
    height: 10px;
    background-position: -30px -102px;
    float: left;
    margin-right: 7px;
    margin-top: 8px; }
  .tab_gen_info article.left {
    float: left;
    margin-top: 35px;
    margin-left: 18px; }
  .tab_gen_info article.left p {
    text-align: left;
    float: left;
    margin-bottom: 23px;
    color: #403f3c !important; }
  .tab_gen_info article.left p.list {
    text-align: left;
    float: left;
    margin-bottom: 13px;
    color: #403f3c !important;
    padding-left: 20px; }
  .tab_gen_info article.left p label {
    float: left;
    width: 120px;
    color: #323641 !important; }
  .tab_gen_info article.left p span {
    display: block;
    float: left; }
  .tab_gen_info article.left p span label {
    float: none !important; }
  .tab_gen_info .map_link {
    display: block;
    float: left;
    padding-top: 10px;
    padding-left: 15px;
    color: #2c6580;
    text-decoration: underline; }

.profile_details {
  border-bottom: #e6e7e8 solid 1px;
  padding: 33px 32px;
  position: relative; }
  .profile_details img {
    float: left;
    margin-top: 0px;
    margin-left: 8px; }
  .profile_details .prsn_info {
    float: left;
    padding-left: 65px;
    width: 450px; }
  .profile_details .prsn_info p {
    float: left; }
  .profile_details .prsn_info label {
    display: block;
    float: left;
    width: 95px; }
  .profile_details .prsn_info label i {
    color: #ff7575;
    font-style: normal;
    font-size: 18px; }
  .profile_details .prsn_info span {
    display: block;
    float: left; }

.contact_info {
  border-bottom: #e6e7e8 solid 1px;
  padding: 13px 24px 13px; }
  .contact_info img {
    float: left;
    margin-top: 17px;
    margin-left: 8px; }
  .contact_info .prsn_info {
    float: left;
    padding-left: 58px;
    width: 450px; }
  .contact_info .prsn_info p {
    float: left; }
  .contact_info .prsn_info label {
    display: block;
    float: left;
    width: 95px; }
  .contact_info .prsn_info span {
    display: block;
    float: left; }
  .contact_info i {
    color: #e65b45; }

.contact_info {
  border-bottom: #e6e7e8 solid 1px;
  padding: 13px 24px 13px; }
  .contact_info img {
    float: left;
    margin-top: 17px;
    margin-left: 8px; }
  .contact_info .prsn_info {
    float: left;
    padding-left: 58px;
    width: 510px; }
  .contact_info .prsn_info p {
    float: left; }
  .contact_info .prsn_info label {
    display: block;
    float: left;
    width: 95px; }
  .contact_info .prsn_info span {
    display: block;
    float: left; }

.city_pan {
  width: 100px;
  float: left;
  margin: 0px 0px 22px 0px; }

.city_pan .sbOptions {
  width: 178px;
  top: 123px !important;
  left: 24px; }

.city_pan div.sbHolder {
  width: 78px;
  float: left; }

.city_pan a.sbSelector {
  width: 120px; }

.grad_pan {
  width: 290px;
  float: left;
  margin: 0px 0px 22px 0px; }

.grad_pan .sbOptions {
  width: 295px;
  top: 123px !important;
  left: 24px; }

.grad_pan div.sbHolder {
  width: 280px;
  float: left; }

.grad_pan a.sbSelector {
  width: 265px;
  height: 36px; }

.tutor_pan {
  width: 255px;
  float: left;
  margin: 0px 0px 22px 0px; }

.tutor_pan .sbOptions {
  width: 270px;
  top: 123px !important;
  left: 24px; }

.tutor_pan div.sbHolder {
  width: 255px;
  float: left; }

.tutor_pan a.sbSelector {
  width: 235px;
  height: 36px; }

.prnt_pan {
  width: 345px;
  float: left;
  margin: 0px 0px 22px 0px; }

.prnt_pan .sbOptions {
  width: 370px;
  top: 123px !important;
  left: 24px; }

.prnt_pan div.sbHolder {
  width: 345px;
  float: left; }

.prnt_pan a.sbSelector {
  width: 335px;
  height: 36px; }

.info_divider {
  border-bottom: #e6e7e8 solid 1px; }

.create_inpt, .create_area {
  position: relative;
  width: 335px;
  margin: 0 auto;
  padding: 10px;
  -webkit-box-shadow: inset 1px 1px 5px -1px #c8c8c8;
  -moz-box-shadow: inset 1px 1px 5px -1px #c8c8c8;
  box-shadow: inset 1px 1px 5px -1px #c8c8c8;
  background: #f8f8f8;
  outline: none;
  color: #403f3c;
  border-radius: 4px;
  border: 0px;
  line-height: 24px !important; }

.create_area {
  height: 100px;
  resize: none; }

.del_assign {
  width: 19px;
  height: 27px;
  background-position: -40px -28px;
  display: block;
  float: left; }

.calndr_tutr {
  width: 32px;
  height: 32px;
  background-position: -160px -120px;
  display: block;
  float: right;
  margin: 6px 20px 0 0; }
  .calndr_tutr:hover {
    background-position: -160px -156px; }

.optWrapper .options label {
  display: block;
  float: none !important;
  width: 100% !important;
  font: 16px 'droid_sansbold' !important; }

.CaptionCont.SlectBox label {
  width: 30px !important; }

.CaptionCont.SlectBox label, .CaptionCont.SlectBox span {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
  cursor: pointer;
  width: 285px; }

.CaptionCont.SlectBox {
  background: #f8f8f8;
  cursor: pointer;
  outline: none;
  font: 18px "droid_sansregular";
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  color: #c9c9c8;
  border-radius: 4px !important;
  height: 20px;
  border: none !important;
  margin: 0 auto !important;
  padding: 10px; }

.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont {
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd;
  box-shadow: inset 1px 1px 5px -1px #dddddd;
  border: none !important;
  -webkit-appearance: none !important; }

.SumoSelect > .optWrapper > .options > li:hover {
  background: #f8f8f8; }
  .SumoSelect > .optWrapper > .options > li:hover label {
    color: #000; }

.SumoSelect > .optWrapper > .options > li {
  display: block;
  outline: none;
  padding: 0 7px;
  border-bottom: solid 1px #e6e8ea; }

.wrapper-demo .SumoSelect > .optWrapper > .options > li label {
  font: 16px "droid_sansbold" !important; }

.gender_pan .f-clr-B,
.wrapper-demo .f-clr-B {
  color: #c9c9c8 !important; }

.SumoSelect > .optWrapper > .options > li label {
  color: #403f3c;
  padding: 10px 0 10px 3px; }

.SumoSelect > .optWrapper.multiple > .options > li.selected span i, .SumoSelect .select-all.selected > span i, .SumoSelect .select-all.partial > span i {
  background-color: #E6E8EA; }

.SumoSelect > .optWrapper > .options {
  width: inherit !important; }

#download_attach {
  font-size: 16px;
  color: #2c6580;
  font-family: 'droid_sansregular';
  margin-left: 10px;
  display: inline-block; }

/*==============Institution styles====================*/
#days_unable_to_test {
  float: right !important; }

.success {
  border: 1px solid #ccc;
  padding: 20px 10px;
  background: #eee;
  color: green;
  text-align: center;
  margin: 0 20px;
  font-size: 1.3em; }

.error {
  color: red; }

.add-tutor-container,
.add-class-container {
  position: relative; }

#selected-classes-text,
#selected-tutors-text {
  position: absolute;
  top: 0px;
  left: 35px; }

#contact-information,
#school-program-information,
#parent-information,
#internal-information,
#scholarship-information,
#roles-information,
#test-accomodations-information,
#acc-roles-information {
  cursor: pointer;
  padding: 10px 0px;
  margin: 0px; }

.icons {
  cursor: pointer; }

.country_slct_div {
  width: auto !important;
  float: left;
  margin: 22px -2px 22px 21px; }

.country_slct_div .sbOptions {
  /*width: 215px;*/ }

.state_pan {
  width: 388px;
  float: left;
  margin: 0px 0px 22px 0px; }

.state_pan .sbOptions {
  width: 388px;
  margin-left: 0px; }

.state_pan div.sbHolder {
  width: 370px; }

.state_pan a.sbSelector {
  width: 370px; }

.gender_pan {
  width: 310px;
  float: left;
  margin: 0px 0px 22px 0px; }

.gender_pan .sbOptions {
  width: 328px; }

.gender_pan div.sbHolder {
  width: 310px; }

.gender_pan a.sbSelector {
  width: 310px; }

.sbOptions li span {
  float: none !important; }

.uProles {
  font: 14px "droid_sansregular" !important;
  margin-left: 0px !important;
  float: left; }
  .uProles li {
    font: 14px "droid_sansregular" !important; }
  .uProles li div.roles_wrapper {
    font: 14px "droid_sansregular" !important;
    width: 900px;
    margin-bottom: 10px; }
  .uProles li div.roles_wrapper p {
    float: left;
    border-bottom: #efefef solid 1px;
    padding-bottom: 10px; }

.lbL_user {
  width: 160px;
  display: block;
  float: left; }

.txt-red {
  color: #ff7575;
  text-align: right; }

.pic_button {
  z-index: 10 !important;
  position: absolute;
  top: 185px;
  left: 93px;
  z-index: 9999;
  display: block;
  border-radius: 4px;
  background-color: #ecf0f1;
  -webkit-box-shadow: 0px 3px 0px 0px #dddddd;
  -moz-box-shadow: 0px 3px 0px 0px #dddddd;
  box-shadow: 0px 3px 0px 0px #dddddd;
  padding: 5px 30px 4px 30px;
  font: 14px "droid_sansbold";
  color: #6d6f75;
  line-height: 21px; }

.pic_button:hover {
  cursor: pointer; }

.pic_button input {
  height: 30px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 85px; }

.pic_button input:hover {
  cursor: pointer; }

.link_heading {
  color: #0f1f5b;
  font: 18px "droid_sansbold";
  text-decoration: underline; }

.errors {
  padding-left: 50px;
  padding-top: 20px;
  font-size: 14px;
  color: red;
  line-height: 20px; }

.fancybox-close {
  display: none; }

.intrnl_info label {
  font: 16px "droid_sansbold" !important;
  margin-bottom: 10px; }

.intrnl_info p {
  font: 14px "droid_sansregular";
  color: #6d6f75; }

.intrnl_info p.list_date {
  position: absolute;
  right: 20px;
  top: 0; }

.intrnl_info i {
  position: absolute;
  right: 20px;
  top: 60px; }

.listing_info {
  position: relative; }

.day_dlt {
  background-position: -40px -210px;
  width: 17px;
  height: 17px;
  display: block; }
  .day_dlt:hover {
    background-position: -62px -256px; }

.score_pop {
  margin: 0 auto;
  position: relative;
  background-color: #ffffff; }

.cross_icon {
  background-position: -40px -232px;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 16px;
  top: 13px; }

.contact_listing {
  float: left; }

.contact_listing a {
  color: #0f1f5b !important;
  text-decoration: underline; }

/*--------------User tooltip---------------*/
.arrow_box_user {
  position: absolute;
  background: #ffffff;
  border: 1px solid #eaeaea;
  top: 48px;
  left: 55px;
  width: 105px; }

.arrow_box_user:after, .arrow_box_user:before {
  bottom: 100%;
  left: 80%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.arrow_box_user:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 7px;
  margin-left: -7px; }

.arrow_box_user:before {
  border-color: rgba(234, 234, 234, 0);
  border-bottom-color: #eaeaea;
  border-width: 8px;
  margin-left: -8px; }

.arrow_box_user a {
  font: 14px "droid_sansbold";
  color: #333333;
  text-transform: none;
  display: block;
  padding: 10px 0 10px 10px; }

.arrow_box_user a:hover {
  background: #ecf0f1; }

.tip-container {
  right: 12px !important; }

.no_msg {
  width: 1305px !important;
  margin: auto;
  margin-bottom: 20px; }

.tchr_list {
  positon: relative; }

.list_Scroll {
  height: 280px;
  overflow: auto; }

.close_icon {
  width: 6px;
  height: 10px;
  background-position: -30px -102px;
  float: left;
  margin-right: 7px;
  margin-top: 8px;
  position: relative; }

.close_list_icon {
  width: 6px;
  height: 10px;
  background-position: -30px -102px;
  float: left;
  margin-right: 7px;
  margin-top: 8px;
  position: relative; }

.open_icon {
  width: 10px;
  height: 6px;
  background-position: -28px -114px;
  float: left;
  margin-right: 7px;
  margin-top: 8px; }

.req {
  color: #ff7575; }

.crop_panel {
  width: 440px;
  height: 440px;
  background-color: transparent; }

.crop_panel img {
  display: block;
  text-align: center;
  margin: auto; }

.error-log {
  color: red; }

.permission_list {
  width: 1130px;
  border: #d8d8d8 solid 1px; }

.permission_list h3 {
  margin: 15px; }

.pr_inner_list {
  background-color: #e6e7e8;
  border-bottom: #ffffff solid 2px;
  position: relative;
  display: block; }

.pr_inner_list td {
  list-style-type: none;
  padding: 0px; }

.pr_inner_list td p.error {
  color: #ff3333; }

.brows_btn {
  height: 38px;
  left: 5px;
  margin: 0;
  opacity: 0;
  padding-top: 0;
  position: absolute;
  top: 2px;
  width: 150px; }

#error_container li {
  color: Red !important; }

.linked_sec {
  height: 135px;
  overflow: auto; }

.r0 {
  right: 0px !important; }

.role-items-ul li {
  cursor: pointer;
  line-height: 30px;
  list-style-type: none;
  padding: 5px 20px; }

.role-items-ul li:hover, .role-items-ul li.active {
  background: #ddd; }

.roles-container {
  height: 200px;
  overflow-y: scroll;
  overflow-x: hidden; }

.usr-roles-box {
  background: #f8f8f8;
  -webkit-box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  -moz-box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  color: #403f3c;
  border-radius: 4px !important;
  border: none !important; }

.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc !important; }

.pop_txt_heading {
  font: 28px/36px "Museo Slab 900";
  border-bottom: #e6e7e8 solid 1px;
  padding-bottom: 12px;
  padding-left: 45px; }

.up_shift {
  width: 65px;
  height: 43px;
  background-position: 0px -280px;
  display: block; }

.down_shift {
  width: 65px;
  height: 43px;
  background-position: 0px -332px;
  display: block; }

.roles-btns {
  position: relative;
  top: 15px;
  left: 60px;
  text-align: center; }
  .roles-btns ul li {
    list-style-type: none;
    margin-bottom: 20px; }
    .roles-btns ul li .create_new_btn, .roles-btns ul li .upload_btn, .roles-btns ul li .add_btn {
      width: 100px;
      position: relative; }
      .roles-btns ul li .create_new_btn.mvRight:after, .roles-btns ul li .mvRight.upload_btn:after, .roles-btns ul li .mvRight.add_btn:after {
        content: "";
        left: 20px;
        position: absolute;
        display: block;
        background: url("../images/sprite.png") no-repeat -208px -250px;
        width: 9px;
        height: 14px;
        top: 15px; }
      .roles-btns ul li .create_new_btn.mvRight:before, .roles-btns ul li .mvRight.upload_btn:before, .roles-btns ul li .mvRight.add_btn:before {
        content: "";
        right: 20px;
        left: auto;
        position: absolute;
        display: block;
        background: url("../images/sprite.png") no-repeat -208px -250px;
        width: 9px;
        height: 14px;
        top: 15px; }
      .roles-btns ul li .create_new_btn.mvLeft:after, .roles-btns ul li .mvLeft.upload_btn:after, .roles-btns ul li .mvLeft.add_btn:after {
        content: "";
        left: 20px;
        position: absolute;
        display: block;
        background: url("../images/sprite.png") no-repeat -230px -250px;
        width: 9px;
        height: 14px;
        top: 15px; }
      .roles-btns ul li .create_new_btn.mvLeft:before, .roles-btns ul li .mvLeft.upload_btn:before, .roles-btns ul li .mvLeft.add_btn:before {
        content: "";
        right: 20px;
        left: auto;
        position: absolute;
        display: block;
        background: url("../images/sprite.png") no-repeat -230px -250px;
        width: 9px;
        height: 14px;
        top: 15px; }

.CaptionCont.SlectBox span {
  width: 95%; }

.dot {
  font-size: 18px;
  font-style: normal; }

#searchDep_annoninput {
  margin: 5px 5px 4px 0 !important; }

ul.holder li.bit-input input {
  font-size: 20px !important; }

section .eye .reply_box {
  display: none;
  top: -46px;
  left: -22px !important;
  padding-bottom: 20px;
  padding-top: 0PX;
  width: 72px;
  height: 18px;
  position: absolute;
  background: #F8F8F8 none repeat scroll 0% 0%;
  border: 1px solid #EEE;
  z-index: 9999;
  box-shadow: 1px 1px 0px #DDD;
  border-radius: 5px;
  text-align: center;
  font-family: 'droid_sansbold'; }

section .eye .reply_box.detail-view {
  height: 8px;
  padding-top: 8px; }

section .eye:hover .reply_box {
  display: block; }

section .download-tooltip:hover .reply_box {
  display: block; }

section .eye a {
  padding: 0px;
  height: 17px; }

form {
  margin: 0px !important; }

section .edit .reply_box {
  display: none;
  top: -43px;
  left: -28px !important;
  padding-bottom: 16px;
  padding-top: 0PX;
  width: 72px;
  height: 18px;
  position: absolute;
  background: #F8F8F8 none repeat scroll 0% 0%;
  border: 1px solid #EEE;
  z-index: 9999;
  box-shadow: 1px 1px 0px #DDD;
  border-radius: 5px;
  text-align: center; }

section .edit:hover .reply_box {
  display: block; }

.question .edit .reply_box {
  padding-bottom: 6px;
  padding-top: 10px; }

section .delete .reply_box {
  display: none;
  top: -43px;
  left: -28px !important;
  padding-bottom: 16px;
  padding-top: 0PX;
  width: 72px;
  height: 18px;
  position: absolute;
  background: #F8F8F8 none repeat scroll 0% 0%;
  border: 1px solid #EEE;
  z-index: 9999;
  box-shadow: 1px 1px 0px #DDD;
  border-radius: 5px;
  text-align: right; }

section .delete:hover .reply_box {
  display: block; }

.fancybox-overlay {
  overflow-y: auto !important; }

.order_list_pan {
  margin: 30px 28px;
  float: left; }
  .order_list_pan label.txt_18_b, .order_list_pan .tab_gen_info article.left p label, .tab_gen_info article.left p .order_list_pan label, .order_list_pan .profile_details .prsn_info label, .profile_details .prsn_info .order_list_pan label, .order_list_pan .contact_info .prsn_info label, .contact_info .prsn_info .order_list_pan label, .order_list_pan label.lbL_user, .order_list_pan label.txt-red {
    display: block;
    float: left;
    margin-right: 20px !important;
    color: #cfcece !important; }
  .order_list_pan div.SumoSelect p span {
    color: #cfcece; }

.dot_icon {
  width: 5px;
  height: 23px;
  background-position: -40px -250px;
  display: block;
  margin: 0 24px 0 8px; }

.clr_stndrd {
  padding: 24px 35px; }

.stndrd_list {
  height: 410px;
  overflow: auto;
  border: #efefef solid 1px;
  border-top: #efefef solid 5px;
  border-bottom: #efefef solid 8px; }

.folder {
  width: 31px;
  height: 24px;
  background-position: 0 -379px;
  display: block;
  margin-top: 5px; }

.shft_up_arrow {
  width: 65px;
  height: 43px;
  background-position: 0px -280px;
  left: 453px;
  position: absolute; }

.shft_down_arrow {
  width: 65px;
  height: 43px;
  background-position: 0px -331px;
  display: block; }

.ofhd {
  overflow: hidden !important; }

.slct_link {
  color: #15448a;
  display: block;
  text-decoration: underline; }

.file {
  width: 21px;
  height: 26px;
  display: block;
  background-position: 0 -405px;
  margin: 8px 0px 11px 33px;
  float: left; }

.player {
  width: 1260px;
  height: 778px;
  margin: 0 auto;
  background-color: #cccccc; }

.resource-list-tipped {
  right: 0px !important; }

.red-cross-icon {
  background-position: -62px -256px;
  width: 17px;
  height: 17px;
  position: relative;
  display: inline-block; }
  .red-cross-icon:hover {
    background-position: -40px -210px; }

.grp-drpdown li a {
  font: 18px 'droid_sansregular' !important; }

#search_keyword, input[name="username"] {
  color: #403f3c !important; }

.ellipsis * {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important; }

.content-area {
  overflow: hidden;
  width: 795px;
  padding: 25px;
  background: #f8f8f8;
  margin: 0 0 30px 30px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  line-height: 28px;
  height: 410px;
  overflow-y: scroll; }
  .content-area p {
    margin: 0 0 17px; }

section .msgs_links ul li.active a,
.active-menu-item {
  color: #ff7575 !important; }

.opaque-icon i {
  opacity: 0.5 !important; }

section .user_Data p.date {
  top: 5px;
  right: -8px; }

.edit-area {
  -webkit-box-shadow: inset 0 1px 3px #c8c8c8;
  -moz-box-shadow: inset 0 1px 3px #c8c8c8;
  box-shadow: inset 0 1px 3px #c8c8c8;
  border: solid 1px #d0d0d0;
  padding: 8px 10px;
  border-bottom: 0;
  border-radius: 4px 4px 0 4px;
  border-right: none; }

.edit-area p.text-style {
  background: url(../images/edit-word.jpg) no-repeat;
  float: left;
  width: 113px;
  height: 40px; }

.switch_on {
  width: 95px;
  height: 48px;
  background-position: 0px -451px;
  display: block;
  position: absolute;
  top: 45px;
  left: 30px; }

.switch_off {
  width: 95px;
  height: 48px;
  background-position: -95px -451px;
  display: block;
  position: absolute;
  top: 45px;
  left: 30px; }

.exp_links {
  float: right;
  font-family: 'droid_sansbold';
  font-size: 14px;
  color: #6d6f75; }

.exp_links i.down {
  width: 20px;
  height: 14px;
  background-position: 0px -435px;
  display: block;
  float: left; }

.exp_links i.up {
  width: 20px;
  height: 14px;
  background-position: -20px -435px;
  display: block;
  float: left; }

.exp_links i.del {
  width: 18px;
  height: 26px;
  background-position: -40px -128px;
  display: block;
  float: left; }

.lst-header-relative p {
  position: relative; }

.list_answer {
  max-height: 280px;
  overflow: auto; }

.list_answer2 {
  max-height: 600px;
  overflow: auto; }

.icon-anch {
  display: block !important;
  padding: 0px !important; }

.eye.icon-anch {
  width: 31px !important;
  height: 20px !important; }

.icon-anch span.reply_box {
  display: none;
  text-align: center;
  line-height: 40px;
  padding-bottom: 16px;
  padding-top: 0; }

.icon-anch.edit {
  width: 22px !important;
  height: 22px !important; }

.icon-anch:hover .reply_box {
  display: block !important; }

.file.icon-anch {
  position: relative; }

.file.icon-anch .reply_box {
  display: none;
  padding-bottom: 16px;
  padding-top: 0PX;
  width: 105px;
  height: 18px;
  position: absolute;
  background: #F8F8F8 none repeat scroll 0% 0%;
  border: 1px solid #EEE;
  z-index: 9999;
  box-shadow: 1px 1px 0px #DDD;
  border-radius: 5px;
  text-align: center;
  top: -42px;
  height: 18px !important;
  left: -45px !important; }

.dar-coll {
  color: #403f3c !important; }

.file-name {
  margin: 0 0 0 25px;
  padding: 0;
  list-style: none; }

.file-name li {
  float: left;
  margin-right: 60px; }

.file-name li strong {
  margin-right: 12px;
  float: left; }

.text-overview {
  font-size: 14px;
  line-height: 18px;
  color: #6d6f75;
  font-family: 'droid_sansregular';
  padding-right: 20px; }

.text-overview p {
  margin: 0 0 15px;
  word-wrap: break-word; }

.text-overview .video-area {
  width: 376px;
  padding: 5px;
  border: 1px solid #efefef;
  height: 227px;
  float: left;
  margin-right: 20px; }

.text-overview .video-area .video {
  background: #ccc;
  width: 100%;
  overflow: hidden;
  height: 227px;
  width: 376px; }

.select2-results li.select2-result .select2-result-label {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
  font-family: 'droid_sansbold';
  font-size: 16px; }

.wrapper-dropdown-4 .select2-container .select2-chosen, .wrapper-dropdown-5 .select2-container .select2-chosen {
  color: #000 !important; }

.search_msg .input-search {
  color: #403f3c !important; }

.switch-btn {
  position: relative; }
  .switch-btn .switch_on {
    background-position: -169px -415px;
    display: block;
    height: 24px;
    left: 30px;
    position: absolute;
    top: 0;
    width: 48px; }
  .switch-btn .switch_off {
    background-position: -109px -415px;
    display: block;
    height: 24px;
    left: 30px;
    position: absolute !important;
    top: 0;
    width: 48px;
    left: auto !important; }

.select2-with-searchbox.select2-drop-active {
  color: #000 !important; }

.wrapper-dropdown-4 input[type="text"], .wrapper-dropdown-5 input[type="text"], .wrapper-dropdown-5 input[type="text"] {
  color: #000; }

.tab_gen_info article.left p {
  color: #c9c9c8 !important; }

/*section .tab_panel ul li:before {
	background: none repeat scroll 0 0 lime;
	bottom: 0;
	content: "";
	margin: 0 0 0 -20px;
	position: absolute;
	top: 0;
	width: 5px;
}*/
.wrapper-dropdown-4 input[type="text"]::-webkit-input-placeholder, .wrapper-dropdown-5 input[type="text"]::-webkit-input-placeholder,
.wrapper-dropdown-4 input[type="password"]::-webkit-input-placeholder, .wrapper-dropdown-5 input[type="password"]::-webkit-input-placeholder,
.wrapper-dropdown-5 input::-webkit-input-placeholder {
  color: #c9c9c8 !important; }

.wrapper-dropdown-4 input[type="text"]::-moz-placeholder, .wrapper-dropdown-5 input[type="text"]::-moz-placeholder,
.wrapper-dropdown-4 input[type="password"]::-moz-placeholder, .wrapper-dropdown-5 input[type="password"]::-moz-placeholder,
.wrapper-dropdown-5 input::-moz-placeholder {
  color: #c9c9c8 !important; }

.wrapper-dropdown-4 input[type="text"]:-moz-placeholder, .wrapper-dropdown-5 input[type="text"]:-moz-placeholder,
.wrapper-dropdown-4 input[type="password"]:-moz-placeholder, .wrapper-dropdown-5 input[type="password"]:-moz-placeholder,
.wrapper-dropdown-5 input:-moz-placeholder {
  color: #c9c9c8 !important; }

.wrapper-dropdown-4 input[type="text"]:-ms-input-placeholder, .wrapper-dropdown-5 input[type="text"]:-ms-input-placeholder,
.wrapper-dropdown-4 input[type="password"]:-ms-input-placeholder, .wrapper-dropdown-5 input[type="password"]:-ms-input-placeholder,
.wrapper-dropdown-5 input:-ms-input-placeholder {
  color: #c9c9c8 !important; }

.wrapper-dropdown-4 input[type="text"].placeholder, .wrapper-dropdown-5 input[type="text"].placeholder,
.wrapper-dropdown-4 input[type="password"].placeholder, .wrapper-dropdown-5 input[type="password"].placeholder,
.wrapper-dropdown-5 input.placeholder {
  color: #c9c9c8 !important; }

div.mce-edit-area {
  background: #f8f8f8; }

.select2-dropdown-open.select2-container-multi .select2-choices .select2-search-field input {
  color: #000 !important; }

.prsn_info .gender_pan .facebook-auto {
  left: 420px !important; }

.clr-fix {
  display: block;
  clear: both;
  content: ""; }

.data_listing .tab_panel ul li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -6px; }

.data_listing .tab_panel ul:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  right: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 -1px 0 0; }

.data_listing .tab_panel ul {
  position: relative; }

.data_listing .tab_panel .assignment_list_items li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -1px; }

.assignment_list_items li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -1px; }

.rec-pessage li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -6px; }

.assignment_list_items:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  right: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 -1px 0 0; }

.assignment_list_items {
  position: relative; }

.assignment_list_items li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -6px; }

#questions-container .question {
  position: relative; }

#questions-container .question li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -6px; }

.reports-blocks ul li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -2px; }

.question-sorting ul {
  border-right: 1px solid #e6e7e8; }
  .question-sorting ul li:before {
    background: #e6e7e8;
    content: "";
    height: 9999px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 1px;
    margin: 0 0 0 -6px; }

.assesment-listing ul li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -2px; }

.default-table-list ul li:before {
  background: #e6e7e8;
  content: "";
  height: 9999px;
  left: 1px;
  position: absolute;
  top: -1px;
  width: 1px;
  margin: 0 0 0 -2px; }

section .data_listing .assesment-listing ul li {
  border-right-color: #fff !important;
  border-left-color: #fff !important; }

.reports-blocks ul li.tab {
  border-color: #fff !important; }

section .data_listing ul li div.actions i {
  margin-bottom: 4px; }

.select-2 .CaptionCont.SlectBox span {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box; }

.select-bd .SumoSelect {
  display: block; }

.select-bd .CaptionCont.SlectBox {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  height: 40px;
  width: 258px !important; }
  .select-bd .CaptionCont.SlectBox span {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    width: 225px !important; }

.content-area {
  padding: 15px 23px; }

.date-picker input[type="text"]::-webkit-input-placeholder {
  color: #c9c9c8 !important; }

.date-picker input[type="text"]::-moz-placeholder {
  color: #c9c9c8 !important; }

.date-picker input[type="text"]:-moz-placeholder {
  color: #c9c9c8 !important; }

.date-picker input[type="text"]:-ms-input-placeholder {
  color: #c9c9c8 !important; }

.date-picker input[type="text"].placeholder {
  color: #c9c9c8 !important; }

.create_inpt::-webkit-input-placeholder, .create_area::-webkit-input-placeholder, .create_area::-webkit-input-placeholder {
  color: #c9c9c8 !important; }

.create_inpt::-moz-placeholder, .create_area::-moz-placeholder, .create_area::-moz-placeholder {
  color: #c9c9c8 !important; }

.create_inpt:-moz-placeholder, .create_area:-moz-placeholder, .create_area:-moz-placeholder {
  color: #c9c9c8 !important; }

.create_inpt:-ms-input-placeholder, .create_area:-ms-input-placeholder, .create_area:-ms-input-placeholder {
  color: #c9c9c8 !important; }

.create_inpt.placeholder, .placeholder.create_area, .create_area.placeholder {
  color: #c9c9c8 !important; }

section .data_listing .ellipsis > .unorderList {
  display: block; }

section .data_listing .ellipsis > .unorderList:before {
  content: " - "; }

.admin-panel-area .tab_panel {
  width: 1140px; }

.cancel-btn {
  color: #2c6580 !important;
  font-size: 15px;
  line-height: 18px;
  text-decoration: underline; }
  .cancel-btn:hover {
    text-decoration: none; }

.progress-bar-area {
  overflow: hidden;
  margin: 0 0 30px; }
  .progress-bar-area .progress-text {
    margin: 0 0 0 30px;
    padding: 0;
    list-style: none;
    overflow: hidden;
    font-size: 15px;
    line-height: 18px;
    font-family: 'droid_sansbold'; }
    .progress-bar-area .progress-text li {
      float: left;
      padding: 10px 40px;
      color: #d7d7d7; }
      .progress-bar-area .progress-text li.color-progess {
        color: #0e1f5b; }
  .progress-bar-area .progress-bar {
    width: 625px;
    height: 3px;
    background: #e1e1e1;
    overflow: hidden;
    margin-left: 30px; }
    .progress-bar-area .progress-bar .fill-color {
      width: 150px;
      height: 3px;
      background: #0e1f5b;
      display: block; }

.advanced_search {
  color: #0e1f5b;
  text-decoration: underline;
  font-size: 17px;
  line-height: 20px; }

.check-holder {
  overflow: hidden; }

.radio-area label {
  display: block; }

h2.practice {
  font: 22px/28px "droid_sansregular";
  color: #393a3c; }

.a-manager-list ul {
  padding: 30px 0 10px 50px;
  list-style: none;
  font: 17px "droid_sansregular"; }
  .a-manager-list ul li {
    margin: 0 0 20px; }

.radio-btn {
  overflow: hidden;
  width: 100%; }
  .radio-btn .radio-buttton {
    margin: 0 0 0 30px;
    padding: 0;
    list-style: none;
    overflow: hidden;
    font-size: 15px;
    line-height: 17px;
    font-family: 'open_sansregular';
    color: #403f3c; }
    .radio-btn .radio-buttton li {
      margin: 0 0 20px 0; }

.tex-area p {
  margin: 0 0 20px 0; }
  .tex-area p span {
    color: #e97564; }

.msgs_links h2 {
  font-size: 23px;
  line-height: 27px;
  color: #393a3c;
  font-family: "droid_sansregular";
  font-weight: normal; }

.drop_downs .form-test {
  margin: 0 0 50px 25px;
  padding: 0;
  list-style: none;
  overflow: hidden; }
  .drop_downs .form-test li {
    float: left;
    background: #ecf0f1;
    border-radius: 4px 6px;
    border-bottom: 3px solid #cacecf;
    text-align: center;
    width: 172px;
    padding: 25px 45px 20px;
    margin: 0 10px; }
    .drop_downs .form-test li .sub-text {
      display: block;
      text-align: center;
      font-size: 12px;
      line-height: 15px;
      color: #999;
      margin-bottom: 5px; }
    .drop_downs .form-test li .create_new_btn, .drop_downs .form-test li .upload_btn, .drop_downs .form-test li .add_btn {
      background: #dee2e3;
      border-bottom: 3px solid #bbc2c4;
      box-shadow: none;
      float: none;
      margin-top: 30px;
      cursor: pointer; }
    .drop_downs .form-test li h3 {
      font-size: 22px;
      line-height: 25px;
      color: #6d6f75;
      margin: 0 0 20px;
      font-family: "droid_sansregular";
      font-weight: normal; }

.time {
  font-size: 18px;
  line-height: 21px;
  color: #e97564;
  font-family: 'Museo Slab 900'; }

.test-form {
  overflow: hidden;
  width: 1116px;
  border-radius: 2px;
  border: 1px solid #d7d7d7;
  margin-left: 30px; }
  .test-form .two-column {
    overflow: hidden; }
    .test-form .two-column .column {
      float: left;
      width: 225px;
      padding: 32px 18px;
      border-right: 1px solid #d7d7d7;
      -webkit-box-shadow: inset 0px 5px 4px -1px #d2d2d2;
      -moz-box-shadow: inset 0px 5px 4px -1px #d2d2d2;
      box-shadow: inset 0px 5px 4px -1px #d2d2d2; }
      .test-form .two-column .column h2 {
        font-size: 24px;
        line-height: 27px;
        color: #393a3c;
        font-weight: normal;
        font-family: 'droid_sansregular';
        margin-bottom: 25px; }
      .test-form .two-column .column .ans-sheet {
        margin: 0;
        padding: 0;
        list-style: none; }
        .test-form .two-column .column .ans-sheet li {
          float: left;
          padding: 5px 15px 5px 0; }
          .test-form .two-column .column .ans-sheet li .create_inpt, .test-form .two-column .column .ans-sheet li .create_area {
            line-height: 22px !important; }
        .test-form .two-column .column .ans-sheet input[type="radio"] {
          margin: 0; }
      .test-form .two-column .column.column-count {
        -webkit-column-count: 2;
        /* Chrome, Safari, Opera */
        -moz-column-count: 2;
        /* Firefox */
        column-count: 2;
        width: 818px;
        border: none;
        height: 945px; }
        .test-form .two-column .column.column-count p {
          font-size: 16px;
          line-height: 32px;
          margin: 0 0 20px;
          color: #393a3c; }

.graph-area {
  overflow: hidden;
  padding: 13px 30px; }
  .graph-area p {
    font-size: 21px;
    line-height: 25px;
    margin: 0 0 14px; }
  .graph-area span {
    font-size: 17px;
    line-height: 20px;
    color: #393a3c;
    margin-bottom: 30px;
    margin-left: 9px;
    display: block; }
  .graph-area .placeholder-graph {
    overflow: hidden;
    height: 291px;
    width: 1176px;
    background: #ccc; }
  .graph-area .graph-placeholder {
    background: #efefef;
    min-height: 200px; }
    .graph-area .graph-placeholder img {
      display: block;
      width: 100%;
      height: auto; }
  .graph-area .graph-title {
    display: block;
    margin: 0 auto 30px;
    text-align: center;
    max-width: 570px;
    font-size: 21px;
    line-height: 25px; }
  .graph-area .text-total {
    float: right;
    position: relative;
    top: 40px;
    margin: 0; }
    .graph-area .text-total .text-red {
      color: #e65b45;
      display: inline-block;
      vertical-align: top; }

.default-table-holder {
  width: 1172px;
  overflow: auto;
  padding: 0 16px 30px 25px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box; }
  .default-table-holder table, .default-table-holder caption, .default-table-holder tbody, .default-table-holder tfoot, .default-table-holder thead, .default-table-holder tr, .default-table-holder th, .default-table-holder td {
    border-collapse: collapse;
    border-spacing: 0; }
  .default-table-holder * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box; }
  .default-table-holder.add {
    width: auto;
    padding: 0 30px; }
    .default-table-holder.add + .report-title {
      padding-top: 60px; }
    .default-table-holder.add .default-table tbody tr td:first-child {
      width: 390px; }
  .default-table-holder.add1 {
    width: auto;
    padding: 0 30px;
    width: 1140px;
    float: right; }
    .default-table-holder.add1 + .report-title {
      padding-top: 60px; }
  .default-table-holder.add2 {
    width: auto;
    padding: 0 30px; }
    .default-table-holder.add2 + .report-title {
      padding-top: 60px; }
    .default-table-holder.add2 .default-table tbody tr td:first-child {
      width: 250px; }
  .default-table-holder .text-l-blue {
    color: #01baf2; }
  .default-table-holder .text-yellow {
    color: #f8c21d; }
  .default-table-holder .text-pink {
    color: #ff7575; }
  .default-table-holder .text-d-blue {
    color: #0f1f5b; }
  .default-table-holder .text-green {
    color: #90c026; }

.grade-table {
  overflow: hidden;
  margin-bottom: 30px; }
  .grade-table .graph-area {
    padding-bottom: 0; }
    .grade-table .graph-area span {
      margin-bottom: 0; }

.default-table {
  width: 100%;
  border-collapse: collapse;
  font: 15px "droid_sansregular";
  border: 1px solid #e6e7e8;
  border-width: 1px 1px 6px;
  margin: 0 auto; }
  .default-table .text {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 17px;
    position: relative; }
    .default-table .text .middle {
      display: inline-block;
      vertical-align: middle; }
  .default-table .header-2 .up_arrow {
    position: static;
    display: inline-block !important;
    vertical-align: middle;
    height: 14px;
    margin: -3px 0 0 15px; }
  .default-table .header-2 .desc .up_arrow {
    height: 6px;
    background-position: -27px -166px; }
  .default-table .header-2 .desc.asc .up_arrow {
    background-position: -27px -158px; }
  .default-table .header-2 .asc .up_arrow {
    height: 6px;
    background-position: -27px -158px; }
  .default-table .header-2 .dwn_arrow {
    display: none !important; }
  .default-table thead {
    background: #efefef;
    font-family: 'droid_sansbold'; }
    .default-table thead tr th {
      text-align: left;
      vertical-align: middle;
      height: 40px;
      font-weight: 400; }
  .default-table tbody tr td {
    vertical-align: middle;
    height: 40px;
    border: 1px solid #e6e7e8;
    border-width: 0 1px; }
    .default-table tbody tr td.bg-1 {
      background: #efefef;
      width: 160px !important;
      text-align: right;
      font-family: 'droid_sansbold'; }
    .default-table tbody tr td .reply_box {
      line-height: 17px;
      padding-bottom: 25px;
      padding-top: 9px;
      text-align: center;
      font-family: 'droid_sansbold';
      font-style: normal; }
  .default-table tbody tr:nth-child(even) {
    background: #f6f8fa; }

.report-title {
  display: block;
  text-align: center;
  font: 18px "droid_sansregular";
  color: #393a3c;
  padding: 4px 20px 23px; }

.section-english-heding {
  font-size: 23px;
  line-height: 25px;
  display: block; }

.border-none {
  border: none !important; }

.grade-area .two-column {
  border-bottom: 1px solid #f0f1f1;
  padding-bottom: 30px;
  margin-bottom: 30px; }
  .grade-area .two-column:after {
    clear: both;
    display: block;
    content: ""; }
  .grade-area .two-column.border-none {
    border: none; }
  .grade-area .two-column .column {
    float: left;
    width: 532px;
    margin-left: 40px; }
    .grade-area .two-column .column label {
      font-family: 'droid_sansbold';
      font-size: 17px;
      line-height: 20px; }

.temp-hed {
  overflow: hidden;
  padding: 0 40px;
  margin-bottom: 40px; }

.drop_downs .template-area {
  overflow: hidden;
  margin-bottom: 30px; }
  .drop_downs .template-area .three-column {
    overflow: hidden;
    padding: 0 40px; }
    .drop_downs .template-area .three-column .column {
      float: left;
      text-align: center;
      width: 265px;
      margin-right: 55px;
      margin-top: 10px; }
      .drop_downs .template-area .three-column .column .temp-area {
        border: 1px solid #ebebeb;
        padding: 20px;
        margin-bottom: 20px;
        background: #fff; }
        .drop_downs .template-area .three-column .column .temp-area label {
          font-size: 17px;
          line-height: 20px;
          font-family: 'droid_sansbold'; }
          .drop_downs .template-area .three-column .column .temp-area label span {
            font-family: 'droid_sansregular'; }
      .drop_downs .template-area .three-column .column .text {
        font-size: 17px;
        line-height: 20px;
        color: #403f3c; }

.drop_downs .template-area .three-column .column.active .temp-area,
.drop_downs .template-area .three-column .column:hover .temp-area {
  -webkit-box-shadow: 0 1px 17px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 17px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 17px rgba(0, 0, 0, 0.2); }

section .data_listing ul li.lh18 {
  line-height: 18px !important; }

.icon-pin {
  height: 25px;
  width: 25px;
  background: url("../images/pin.png") no-repeat;
  margin: 5px 0 0; }

.icon-pin2 {
  width: 14px;
  height: 22px;
  background-position: -152px -192px;
  margin: 5px 0 0; }
  .icon-pin2:hover {
    cursor: pointer;
    background-position: -173px -192px; }

.omitted {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  width: 16px;
  height: 16px;
  background-position: -136px -292px; }
  .answerKey .omitted {
    margin: 0 30px 0 0; }

.correct2 {
  display: inline-block;
  vertical-align: baseline;
  background-position: -136px -310px;
  width: 16px;
  height: 16px;
  position: relative; }
  .answerKey .correct2 {
    margin: 0 30px 0 0; }

.ommitted-answer {
  text-indent: -9999px;
  overflow: hidden;
  text-align: left; }
  .ommitted-answer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 6px 0 0 16px;
    background: url("../images/sprite.png") -136px -292px no-repeat;
    width: 16px;
    height: 16px; }

.default-table .correct-answer {
  background-color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  text-align: left; }
  .default-table .correct-answer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 6px 0 0 16px;
    background: url("../images/sprite.png") -136px -310px no-repeat;
    width: 16px;
    height: 16px; }

.ico-error {
  display: inline-block;
  vertical-align: top;
  background-position: -202px -81px;
  width: 22px;
  height: 22px;
  position: relative; }
  .ico-error:hover {
    cursor: pointer;
    background-position: -202px -108px; }

.ico-not_started {
  display: inline-block;
  vertical-align: top;
  background-position: -202px -134px;
  width: 22px;
  height: 22px;
  position: relative; }
  .ico-not_started:hover {
    cursor: pointer;
    background-position: -229px -134px; }

.ico-in_progress {
  display: inline-block;
  vertical-align: top;
  background-position: -137px -33px;
  width: 25px;
  height: 22px;
  position: relative; }
  .ico-in_progress:hover {
    cursor: pointer;
    background-position: -204px -163px; }

.ico-complete {
  display: inline-block;
  vertical-align: top;
  background-position: -228px -81px;
  width: 22px;
  height: 22px;
  position: relative; }
  .ico-complete:hover {
    cursor: pointer;
    background-position: -228px -108px; }

section .ico-grade {
  background-position: -123px -3px;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  section .ico-grade .reply_box {
    display: none;
    height: 18px;
    left: -28px;
    top: auto;
    bottom: 100%;
    margin: 0 0 8px;
    width: 72px; }
  section .ico-grade:hover {
    cursor: pointer;
    background-position: -100px -3px; }
    section .ico-grade:hover .reply_box {
      display: block; }

section .grading-icon {
  background-position: -208px -198px;
  width: 16px;
  height: 21px;
  display: inline-block;
  vertical-align: top;
  position: relative; }
  section .grading-icon .reply_box {
    display: none;
    height: 47px;
    left: -50px;
    top: auto;
    bottom: 100%;
    margin: 0 0 8px;
    width: 101px; }
  section .grading-icon:hover {
    cursor: pointer;
    background-position: -229px -198px; }
    section .grading-icon:hover .reply_box {
      display: block; }

.fancybox-inner {
  height: 500px; }

i.program-up-mark {
  width: 10px;
  height: 6px;
  background-position: -27px -77px;
  float: left;
  margin-right: 7px;
  margin-top: 11px; }

i.program-side-mark {
  width: 6px;
  height: 10px;
  background-position: -64px -44px;
  float: left;
  margin-right: 7px;
  margin-top: 7px; }

i.program-down-mark {
  width: 10px;
  height: 6px;
  background-position: -27px -88px;
  float: left;
  margin-right: 7px;
  margin-top: 11px; }

.performance-area {
  overflow: hidden; }
  .performance-area .two-column {
    overflow: hidden; }
    .performance-area .two-column .column {
      float: left;
      width: 50%;
      margin-bottom: 30px; }
      .performance-area .two-column .column .default-table .text {
        padding: 5px 10px; }

.scrolllist {
  height: 100px;
  overflow-y: scroll; }

.assessment-list ul:nth-child(even) {
  background: #f6f8fa; }

.assessment-list ul:nth-child(even) li.last {
  border-right: 1px solid #f6f8fa !important; }

.data_listing ul:nth-child(even) {
  background: #f6f8fa; }

.data_listing ul:nth-child(even) li.last {
  border-right: 1px solid #f6f8fa !important; }

.mce-add-anchor button {
  line-height: normal;
  color: #6d6f75;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  font-size: 14px;
  font-family: droid_sansregular;
  border-radius: 4px;
  border: 0px;
  background-color: #ecf0f1;
  padding: 3px 10px; }

section .data_listing .default-table-list ul {
  float: none; }
  section .data_listing .default-table-list ul:after {
    display: block;
    clear: both;
    content: ""; }
  section .data_listing .default-table-list ul:nth-child(even) {
    background: #f6f8fa; }

.move-arrow-box {
  text-align: center;
  padding: 0 50px 15px 0; }
  .move-arrow-box .create_new_btn, .move-arrow-box .upload_btn, .move-arrow-box .add_btn {
    float: none;
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    position: relative; }
    .move-arrow-box .create_new_btn.arrow-down:after, .move-arrow-box .arrow-down.upload_btn:after, .move-arrow-box .arrow-down.add_btn:after {
      content: "";
      left: 20px;
      position: absolute;
      display: block;
      background: url("../images/sprite.png") no-repeat -208px -232px;
      width: 14px;
      height: 9px;
      top: 15px; }
    .move-arrow-box .create_new_btn.arrow-down:before, .move-arrow-box .arrow-down.upload_btn:before, .move-arrow-box .arrow-down.add_btn:before {
      content: "";
      right: 20px;
      left: auto;
      position: absolute;
      display: block;
      background: url("../images/sprite.png") no-repeat -208px -232px;
      width: 14px;
      height: 9px;
      top: 15px; }
    .move-arrow-box .create_new_btn.arrow-top:after, .move-arrow-box .arrow-top.upload_btn:after, .move-arrow-box .arrow-top.add_btn:after {
      content: "";
      left: 20px;
      position: absolute;
      display: block;
      background: url("../images/sprite.png") no-repeat -230px -232px;
      width: 14px;
      height: 9px;
      top: 15px; }
    .move-arrow-box .create_new_btn.arrow-top:before, .move-arrow-box .arrow-top.upload_btn:before, .move-arrow-box .arrow-top.add_btn:before {
      content: "";
      right: 20px;
      left: auto;
      position: absolute;
      display: block;
      background: url("../images/sprite.png") no-repeat -230px -232px;
      width: 14px;
      height: 9px;
      top: 15px; }

.import-users-list {
  margin: 0;
  padding: 28px 70px 12px; }
  .import-users-list li {
    margin: 0 0 15px; }
    .import-users-list li a {
      color: #2c6580;
      text-decoration: underline; }
      .import-users-list li a:hover {
        text-decoration: none; }

span p.consider {
  padding-left: 30px !important; }

ol li.romanchoice {
  list-style-type: upper-roman !important; }

.mainContainer ul li.tab-programs {
  float: left;
  list-style-type: none;
  background-color: #e6e7e8;
  margin-right: 5px;
  width: 136px;
  border-top: #e6e7e8 solid 5px;
  border-right: #e6e7e8 solid 1px;
  border-left: #e6e7e8 solid 1px;
  position: relative;
  min-height: 40px; }

.mainContainer ul li.tab-programs.selected {
  background-color: #ffffff;
  border-top: #0e1f5b solid 5px;
  border-right: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px; }

.mainContainer ul li.tab-programs:hover {
  background-color: #ffffff;
  border-top: #0e1f5b solid 5px;
  border-right: #e4e4e4 solid 1px;
  border-left: #e4e4e4 solid 1px; }

.mainContainer ul li.tab-programs a {
  display: block;
  padding: 13px 0px 9px;
  text-align: center; }

.mainContainer ul li a.view {
  display: block;
  padding: 12px 0px 13px;
  text-align: left;
  color: #2c6580;
  text-decoration: underline; }

.container-item-access .program-tabs {
  margin-top: 35px !important;
  overflow: hidden;
  margin-left: 0 !important;
  margin-bottom: -1px; }

.container-item-access #specific-reports-holders,
.container-item-access #specific-lessonsgroup-holder,
.container-item-access #specific-filesgroup-holder,
.container-item-access #specific-assessmentgroup-holder,
.container-item-access #specific-reports-holder,
.container-item-access #specific-lessons-holder,
.container-item-access #specific-files-holder,
.container-item-access #specific-assessment-holder,
.container-item-access #group-qbankgroup-holder,
.container-item-access #specific-passage-holder,
.container-item-access #specific-qbank-holder {
  border: 1px solid #e4e4e4;
  overflow: hidden;
  padding-left: 27px;
  padding-top: 40px; }

#modelListDataContainer ul:nth-child(even) {
  background: #f6f8fa; }

.default-table-list-config ul:nth-child(even),
.default-table-list-config.teacher-data-list ul:nth-child(even),
.default-table-list-config.authorizedUsersTable ul:nth-child(even),
.default-table-list-config.qbank-enroll-students-grid ul:nth-child(even),
.default-table-list-config.qbank-all-students-grid ul:nth-child(even),
.default-table-list-config.student-data-list ul:nth-child(even),
.default-table-list-config.roster-students-data-list ul:nth-child(even) {
  background: #f6f8fa; }

.mce-item-table,
.mce-item-table td,
.mce-item-table th,
.mce-item-table caption {
  border: 1px solid #bbb !important;
  border-collapse: collapse !important;
  padding: 5px !important; }

/*.passage-listing-content {overflow:hidden !important;}*/
#wrapper {
  width: 3042px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 76px 132px;
  font-family: Arial, Helvetica, sans-serif; }
  #wrapper .logo-area {
    overflow: hidden; }
  #wrapper .logo-area .logo {
    margin-bottom: 47px;
    margin-left: 10px;
    float: left; }
  #wrapper .logo-area .logo img {
    display: block; }
  #wrapper .logo-area .top-heading {
    float: right;
    margin: 28px -17px 0 0; }
  #wrapper .logo-area .top-heading h1 {
    text-transform: uppercase;
    font-size: 62px;
    line-height: 55px;
    margin: 0;
    text-align: right; }
  #wrapper .logo-area .top-heading h1 .rafrence {
    float: right;
    font-size: 31px;
    margin: -15px 42px 0 0; }
  #wrapper .logo-area .top-heading .sub-heading {
    font-size: 42px;
    font-weight: normal;
    line-height: 68px;
    margin: 0 57px 0 0;
    text-align: right; }
  #wrapper .bubble-area:after {
    clear: both;
    display: block;
    content: ''; }
  #wrapper .bubble-area .four-column:after {
    clear: both;
    display: block;
    content: ''; }
  #wrapper .bubble-area .four-column .column {
    float: left;
    width: 490px;
    border: 3px solid #000;
    margin-bottom: 44px; }
  #wrapper .bubble-area .four-column .column.date-area {
    float: right;
    margin: 0 0 31px;
    min-height: 226px;
    width: 594px; }
  #wrapper .date-id-area {
    overflow: hidden; }
  #wrapper .name-column-area {
    overflow: hidden; }
  #wrapper .bubble-area .four-column .column.date-area .date {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 29px;
    line-height: 30px;
    font-style: italic;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif; }
  #wrapper .bubble-area .four-column .column.date-area h2 {
    margin-bottom: 80px; }
  #wrapper .bubble-area .four-column .column.date-area .date li {
    display: inline-block;
    vertical-align: middle;
    padding: 26px 60px 20px; }
  #wrapper .bubble-area .four-column .column.date-area.add {
    min-height: 267px; }
  #wrapper .bubble-area .four-column .column.id-number {
    width: 443px;
    margin: 0 0 11px; }
  #wrapper .bubble-area .four-column .column h2 {
    background: #231f20;
    text-align: center;
    border-bottom: 3px solid #231f20;
    margin: 0;
    color: #fff;
    font-size: 33px;
    line-height: 31px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 16px;
    text-transform: uppercase; }
  #wrapper .bubble-area .four-column .column h2 img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 15px; }
  #wrapper .bubble-area .four-column .column .name-text {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 3px solid #000;
    overflow: hidden;
    border-left: none;
    border-right: none; }
  #wrapper .bubble-area .four-column .column .name-text li {
    float: left;
    border-left: 3px solid #000;
    padding: 1px 0px;
    height: 73px;
    width: 46px; }
  #wrapper .bubble-area .four-column .column .name-text li:first-child {
    border: none; }
  #wrapper .bubble-area .four-column .column .name-empty-circle {
    margin: 0 0 0 2px;
    padding: 0;
    list-style: none;
    font-size: 22px;
    line-height: 20px;
    text-align: center;
    overflow: hidden; }
  #wrapper .bubble-area .four-column .column.answer {
    width: 1800px;
    margin-bottom: 56px; }
  #wrapper .bubble-area .four-column .column.answer.add6 {
    width: 1558px; }
  #wrapper .bubble-area .four-column .column.answer.add7 {
    width: 2585px; }
  #wrapper .bubble-area .four-column .column.answer.act {
    width: 1775px;
    float: right; }
  #wrapper .bubble-area .four-column .column.answer.act .column-bottom {
    border-bottom: 1px solid #000;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 50px; }
  #wrapper .bubble-area .four-column .column.answer.act .column-bottom .flt-left.add2 {
    margin: 6px 30px 4px 20px; }
  #wrapper .bubble-area .four-column .column.answer.act .column-bottom.add {
    border: none; }
  #wrapper .bubble-area .four-column .column.answer.add4 {
    width: 891px;
    margin: 0 0 50px 6px;
    float: right; }
  #wrapper .bubble-area .four-column .column.answer.add5 {
    width: 1220px;
    float: right; }
  #wrapper .bubble-area .four-column .column.answer.add4 .flt-left {
    margin: 6px 3px 4px 4px;
    width: 287px; }
  #wrapper .bubble-area .four-column .column.answer.english {
    width: 585px; }
  #wrapper .bubble-area .four-column .column.answer.math {
    width: 1072px;
    float: right; }
  #wrapper .bubble-area .four-column .column.answer.science {
    width: 1072px;
    float: right; }
  #wrapper .bubble-area .four-column .column.answer.add3 {
    margin-bottom: 10px; }
  #wrapper .bubble-area .four-column .column.answer.add2 {
    margin-bottom: 60px; }
  #wrapper .bubble-area .four-column .column.answer.science .flt-left {
    width: 238px;
    margin: 6px 14px 4px 15px; }
  #wrapper .bubble-area .four-column .column.answer.math .flt-left {
    width: 314px; }
  #wrapper .bubble-area .four-column .column.answer.english .flt-left {
    width: 246px;
    margin: 6px 28px 4px 15px; }
  #wrapper .bubble-area .four-column .column.answer.reading1 {
    width: 720px; }
  #wrapper .bubble-area .four-column .column.answer.reading1.writing {
    margin-right: 100px; }
  #wrapper .bubble-area .four-column .column.answer .flt-left {
    float: left;
    width: 251px;
    margin: 6px 28px 4px 15px; }
  #wrapper .bubble-area .four-column .column.answer .flt-left.add4 {
    margin-top: 50px; }
  #wrapper .bubble-area .four-column .column.answer .flt-left.add1 {
    margin-left: 42px; }
  #wrapper .bubble-area .four-column .column.answer .flt-left.add2 {
    margin: 6px 37px 4px 32px;
    width: 285px; }
  #wrapper .bubble-area .four-column .column.add {
    width: 593px;
    margin: 0 0 40px;
    float: right; }
  #wrapper .bubble-area .four-column .column.answer .name-empty-circle li.no-circle {
    border: none;
    font-size: 24px;
    font-weight: bold;
    margin-top: 13px; }
  #wrapper .bubble-area .four-column .column .name-empty-circle li {
    border: 3px solid #000;
    border-radius: 100%;
    height: 34px;
    width: 34px;
    background: #fff;
    margin: 6px 5px 3px 4px;
    float: left;
    font-family: Arial, Helvetica, sans-serif; }
  #wrapper .bubble-area .four-column .column .name-empty-circle li:last-child {
    margin-right: 0; }
  #wrapper .bubble-area .four-column .column .name-empty-circle li span {
    padding-top: 5px;
    display: block; }
  #wrapper .large-column-area {
    float: left;
    width: 1136px; }
  #wrapper .large-column-area.add {
    float: right;
    width: 1806px;
    margin: -22px 0 0; }
  #wrapper .large-column-area.add2 {
    float: left;
    width: 1806px;
    margin: -22px 0 0; }
  #wrapper .side-circle-br,
  #wrapper .side-circle-bl,
  #wrapper .side-circle-tr,
  #wrapper .side-circle-tl {
    height: 50px;
    width: 50px;
    background: #fff;
    border-radius: 100%;
    border: 8px solid #000;
    position: absolute;
    left: 42px;
    top: 44px; }
  #wrapper .side-circle-tr {
    left: auto;
    right: 47px; }
  #wrapper .side-circle-bl {
    top: auto;
    bottom: 34px; }
  #wrapper .side-circle-br {
    top: auto;
    bottom: 34px;
    right: 47px;
    left: auto; }
  #wrapper .bottom-codebar {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    width: 100%; }
  #wrapper .bottom-codebar li {
    float: left;
    height: 46px;
    width: 22px;
    background: #000;
    margin: 0 10px 0 17px; }
  #wrapper .place-holder-img {
    float: left;
    margin: -51px 0 0; }
  #wrapper .place-holder-img.add {
    margin: 0; }
  #wrapper .place-holder-img img {
    display: block; }
  #wrapper .response {
    float: left;
    width: 202px;
    margin: 30px 21px 45px 20px; }
  #wrapper .response .number {
    font-size: 24px;
    font-weight: bold;
    margin-top: 13px; }
  #wrapper .response-area {
    border: 3px solid #000;
    width: 202px;
    height: 680px; }
  #wrapper .response-area .slash {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 3px solid #000;
    border-top: 3px solid #000;
    text-align: center; }
  #wrapper .response-area .slash.add {
    margin-top: 60px;
    border-bottom: none;
    padding: 5px 0; }
  #wrapper .response-area .slash.add1 {
    border-top: none;
    padding: 5px 0; }
  #wrapper .response-area .slash li {
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    font-size: 55px;
    line-height: 39px;
    position: relative; }
  #wrapper .response-area .slash li:after {
    content: "";
    position: absolute;
    height: 100px;
    width: 3px;
    background: #000;
    left: -4px;
    top: -48px; }
  #wrapper .response-area .slash li:first-child:after {
    display: none; }
  #wrapper .response-area .slash li .slash-box {
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle; }

.program-details-page {
  width: 1230px;
  margin: 0 auto;
  overflow: hidden; }
  .program-details-page .tab_panel {
    background: #fff; }
  .program-details-page .info_divider {
    border: 0; }
  .program-details-page .prsn_info {
    float: none;
    width: auto; }
    .program-details-page .prsn_info p {
      float: none; }
      .program-details-page .prsn_info p .text-bold {
        font-family: "droid_sansbold";
        font-weight: 400; }
    .program-details-page .prsn_info ul {
      width: auto;
      float: none; }
  .program-details-page .contact_info {
    border-bottom-width: 2px; }
  .program-details-page .program-details-header {
    background: #fff;
    margin: 0 0 30px; }
    .program-details-page .program-details-header:after {
      clear: both;
      content: "";
      display: block; }
    .program-details-page .program-details-header .accordian {
      padding: 0;
      color: #6d6f75;
      font-size: 15px;
      line-height: 22px;
      padding: 0 40px; }
      .program-details-page .program-details-header .accordian:after {
        clear: both;
        content: "";
        display: table; }
      .program-details-page .program-details-header .accordian p {
        margin: 0 0 20px; }
    .program-details-page .program-details-header .header-top {
      border-bottom: 1px solid #f2f2f3;
      padding: 15px 20px;
      margin: 0 0 20px; }
      .program-details-page .program-details-header .header-top h1 {
        font: 28px "Museo Slab 900";
        overflow: hidden;
        padding: 0 30px 0 0; }
      .program-details-page .program-details-header .header-top:after {
        clear: both;
        content: "";
        display: block; }

.program-detail-widget {
  padding: 0 25px 25px;
  margin: 0 0 30px;
  background: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); }
  .program-detail-widget.add {
    padding-bottom: 0; }
  .program-detail-widget .upload_btn {
    width: 75px;
    float: none;
    margin: 15px auto 0; }
  .program-detail-widget:after {
    clear: both;
    content: "";
    display: table; }
  .program-detail-widget .headings {
    padding: 10px;
    margin: 0 -25px 25px; }
    .program-detail-widget .headings .title {
      display: block;
      overflow: hidden;
      padding: 8px 0;
      font: 28px "Museo Slab 900"; }
    .program-detail-widget .headings button.create_new_btn, .program-detail-widget .headings button.upload_btn, .program-detail-widget .headings button.add_btn {
      border: 0; }
    .program-detail-widget .headings .create_new_btn, .program-detail-widget .headings .upload_btn, .program-detail-widget .headings .add_btn {
      float: right;
      margin: 0; }
    .program-detail-widget .headings:after {
      clear: both;
      content: "";
      display: block; }
    .program-detail-widget .headings .title {
      font-family: 'droid_sansbold';
      font-weight: 400; }
  .program-detail-widget textarea {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #f8f8f8;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    padding: 8px;
    font: 15px "droid_sansregular"; }
  .program-detail-widget .default-table thead tr th {
    font: 17px "droid_sansbold"; }
  .program-detail-widget .syllabus_tabs_area {
    margin: -25px 0 0 -25px; }

.filter-tip-item {
  padding: 18px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 25px;
  width: 270px;
  background: white;
  border: 2px solid #2d2d2d; }

.blue-under-line {
  color: #15448a !important;
  font: 16px "droid_sansregular";
  text-decoration: underline;
  text-align: left; }

.v-hidden {
  visibility: hidden; }

.new-score-popup {
  width: 853px;
  margin: 0 auto;
}
.new-score-popup .score-head-box {
    border-bottom: 1px solid #e6e7e8;
}
.new-score-popup .score-head-box:after {
      clear: both;
      content: "";
      display: table;
}
.new-score-popup table {
    border: 0;
    border-collapse: collapse;
    width: 100%;
}
.new-score-popup table td, .new-score-popup table th {
    padding: 0;
    vertical-align: top;
    text-align: left;
}
.new-score-popup table td input, .new-score-popup table th input {
    float: left;
    display: block;
    margin: 0 auto;
}
.new-score-popup table th .text {
    display: block;
    padding: 10px;
}
.new-score-popup table td div {
    padding: 10px 15px;
}

.bulk-imprt-score-pop {
  width: 735px;
  margin: 0 auto; }
  .bulk-imprt-score-pop .import-users-list {
    padding: 28px 20px 10px 48px; }
    .bulk-imprt-score-pop .import-users-list li .create_new_btn, .bulk-imprt-score-pop .import-users-list li .upload_btn, .bulk-imprt-score-pop .import-users-list li .add_btn {
      color: #6d6f75;
      text-decoration: none; }
    .bulk-imprt-score-pop .import-users-list .file-box {
      padding: 22px 0 15px 21px; }
  .bulk-imprt-score-pop .link-list {
    padding: 20px 0 7px 21px;
    font-size: 17px; }
    .bulk-imprt-score-pop .link-list ul {
      margin: 0;
      padding: 0;
      list-style: none; }

.assesmant-q-details .assment-header {
  border-bottom: 1px solid #e6e7e8; }

.assesmant-q-details .questions-details {
  padding: 25px 15px; }
  .assesmant-q-details .questions-details h2 {
    border-top: 1px solid #e6e7e8;
    margin: 0 -15px;
    color: #403f3c;
    font: 28px "Museo Slab 900";
    padding-bottom: 8px;
    padding: 25px 15px 30px; }
  .assesmant-q-details .questions-details .details-row {
    margin: 0 0 10px;
    max-width: 880px; }
    .assesmant-q-details .questions-details .details-row > .link {
      text-decoration: underline; }
      .assesmant-q-details .questions-details .details-row > .link:hover {
        text-decoration: none; }
    .assesmant-q-details .questions-details .details-row:after {
      clear: both;
      content: "";
      display: block; }
    .assesmant-q-details .questions-details .details-row textarea {
      width: 722px;
      height: 180px; }
  .assesmant-q-details .questions-details .question-block {
    float: left;
    width: 105px; }
    .assesmant-q-details .questions-details .question-block .text {
      display: block;
      font: 17px "droid_sansbold"; }
  .assesmant-q-details .questions-details .answer-details {
    overflow: hidden;
    padding-left: 40px; }
    .assesmant-q-details .questions-details .answer-details p {
      margin: 0 0 30px;
      line-height: 28px; }
    .assesmant-q-details .questions-details .answer-details .input-box {
      padding: 20px 0; }
      .assesmant-q-details .questions-details .answer-details .input-box .text-result {
        float: left;
        padding: 9px 0 0 65px;
        color: #e97564; }
      .assesmant-q-details .questions-details .answer-details .input-box .text-incorrect,
      .assesmant-q-details .questions-details .answer-details .input-box .text-correct {
        float: left;
        font: 18px "droid_sansbold";
        color: #aad260;
        padding: 10px 0 0 20px; }
        .assesmant-q-details .questions-details .answer-details .input-box .text-incorrect .icons,
        .assesmant-q-details .questions-details .answer-details .input-box .text-correct .icons {
          float: left;
          background-position: -170px -220px;
          width: 29px;
          height: 29px;
          margin: -4px 20px 0 0; }
      .assesmant-q-details .questions-details .answer-details .input-box .text-incorrect {
        color: #e97564; }
        .assesmant-q-details .questions-details .answer-details .input-box .text-incorrect .icons {
          background-position: -171px -256px; }
      .assesmant-q-details .questions-details .answer-details .input-box:after {
        clear: both;
        content: "";
        display: block; }
    .assesmant-q-details .questions-details .answer-details .question {
      display: block;
      margin: 0 0 20px; }
    .assesmant-q-details .questions-details .answer-details .link-area {
      padding: 10px 20px 30px 0; }
      .assesmant-q-details .questions-details .answer-details .link-area a {
        text-decoration: underline;
        color: #2c6580;
        font-size: 17px;
        font-family: "droid_sansbold";
        margin-right: 30px; }
        .assesmant-q-details .questions-details .answer-details .link-area a:hover {
          text-decoration: none; }
    .assesmant-q-details .questions-details .answer-details ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .assesmant-q-details .questions-details .answer-details ul .bar {
        padding: 9px 10px 9px 40px;
        display: inline-block;
        vertical-align: middle;
        border-radius: 25px;
        min-width: 300px; }
        .assesmant-q-details .questions-details .answer-details ul .bar .answer-value,
        .assesmant-q-details .questions-details .answer-details ul .bar .list-item {
          width: 45px;
          float: left;
          display: inline-block;
          vertical-align: middle; }
        .assesmant-q-details .questions-details .answer-details ul .bar .text-correct,
        .assesmant-q-details .questions-details .answer-details ul .bar .text-incorrect {
          font-family: "droid_sansbold";
          display: inline-block;
          vertical-align: middle;
          position: relative;
          padding: 0 0 0 37px; }
          .assesmant-q-details .questions-details .answer-details ul .bar .text-correct .icons,
          .assesmant-q-details .questions-details .answer-details ul .bar .text-incorrect .icons {
            position: absolute;
            top: 0;
            left: 0;
            margin-top: -4px;
            background-position: -130px -220px;
            width: 29px;
            height: 29px; }
        .assesmant-q-details .questions-details .answer-details ul .bar .answer-value {
          width: auto;
          padding: 0 20px 0 0;
          max-width: 500px; }
        .assesmant-q-details .questions-details .answer-details ul .bar .text-no-response {
          float: right; }
      .assesmant-q-details .questions-details .answer-details ul li {
        margin: 0 0 12px -40px; }
        .assesmant-q-details .questions-details .answer-details ul li p {
          margin: 0;
          line-height: 22px; }
        .assesmant-q-details .questions-details .answer-details ul li .text-result {
          display: inline-block;
          vertical-align: middle;
          margin-left: 65px;
          max-width: 500px; }
        .assesmant-q-details .questions-details .answer-details ul li.correct .text-result {
          color: #aad260; }
        .assesmant-q-details .questions-details .answer-details ul li.correct .bar {
          background: #aad260;
          color: #fff; }
        .assesmant-q-details .questions-details .answer-details ul li.incorrect .text-result {
          color: #e97564; }
        .assesmant-q-details .questions-details .answer-details ul li.incorrect .bar {
          background: #e97564;
          color: #fff; }
        .assesmant-q-details .questions-details .answer-details ul li.disabled .text-correct {
          padding-left: 0; }
        .assesmant-q-details .questions-details .answer-details ul li.disabled .text-result {
          color: #c2c2c2; }
        .assesmant-q-details .questions-details .answer-details ul li.disabled .bar {
          background: #c2c2c2;
          color: #fff; }
  .assesmant-q-details .questions-details:after {
    clear: both;
    content: "";
    display: block; }

.grading-pop .details-row {
  margin: 0 0 10px;
  max-width: 880px; }
  .grading-pop .details-row > .link {
    text-decoration: underline; }
    .grading-pop .details-row > .link:hover {
      text-decoration: none; }
  .grading-pop .details-row:after {
    clear: both;
    content: "";
    display: block; }
  .grading-pop .details-row textarea {
    width: 722px;
    height: 180px; }
  .grading-pop .details-row .answer-details {
    overflow: hidden;
    padding-left: 40px; }
    .grading-pop .details-row .answer-details p {
      margin: 0 0 30px;
      line-height: 28px; }
    .grading-pop .details-row .answer-details .input-box {
      padding: 20px 0; }
      .grading-pop .details-row .answer-details .input-box .text-result {
        float: left;
        padding: 9px 0 0 65px;
        color: #e97564; }
      .grading-pop .details-row .answer-details .input-box .check-area {
        margin: 0;
        padding: 0 0 0 40px;
        list-style: none; }
        .grading-pop .details-row .answer-details .input-box .check-area li {
          overflow: hidden;
          font-family: 'droid_sansregular';
          font-size: 18px;
          line-height: 21px;
          margin-bottom: 20px; }
        .grading-pop .details-row .answer-details .input-box .check-area span {
          margin-left: 20px;
          display: inline-block;
          vertical-align: top; }
        .grading-pop .details-row .answer-details .input-box .check-area label {
          margin-left: 20px; }
      .grading-pop .details-row .answer-details .input-box .text-incorrect,
      .grading-pop .details-row .answer-details .input-box .text-correct {
        float: left;
        font: 18px "droid_sansbold";
        color: #aad260;
        padding: 10px 0 0 20px; }
        .grading-pop .details-row .answer-details .input-box .text-incorrect .icons,
        .grading-pop .details-row .answer-details .input-box .text-correct .icons {
          float: left;
          background-position: -170px -220px;
          width: 29px;
          height: 29px;
          margin: -4px 20px 0 0; }
      .grading-pop .details-row .answer-details .input-box .text-incorrect {
        color: #e97564; }
        .grading-pop .details-row .answer-details .input-box .text-incorrect .icons {
          background-position: -171px -256px; }
      .grading-pop .details-row .answer-details .input-box:after {
        clear: both;
        content: "";
        display: block; }
    .grading-pop .details-row .answer-details .question {
      display: block;
      margin: 0 0 20px; }
      .grading-pop .details-row .answer-details .question + .question {
        margin: 0 0 10px; }
    .grading-pop .details-row .answer-details .link-area {
      padding: 10px 20px 30px 0; }
      .grading-pop .details-row .answer-details .link-area a {
        text-decoration: underline;
        color: #2c6580;
        font-size: 17px;
        font-family: "droid_sansbold";
        margin-right: 30px; }
        .grading-pop .details-row .answer-details .link-area a:hover {
          text-decoration: none; }
    .grading-pop .details-row .answer-details ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .grading-pop .details-row .answer-details ul .bar {
        padding: 9px 10px 9px 40px;
        display: inline-block;
        vertical-align: middle;
        border-radius: 25px; }
        .grading-pop .details-row .answer-details ul .bar .answer-value,
        .grading-pop .details-row .answer-details ul .bar .list-item {
          width: 45px;
          display: inline-block;
          vertical-align: middle; }
        .grading-pop .details-row .answer-details ul .bar .text-correct,
        .grading-pop .details-row .answer-details ul .bar .text-incorrect {
          font-family: "droid_sansbold";
          display: inline-block;
          vertical-align: middle;
          position: relative;
          padding: 0 0 0 37px; }
          .grading-pop .details-row .answer-details ul .bar .text-correct .icons,
          .grading-pop .details-row .answer-details ul .bar .text-incorrect .icons {
            position: absolute;
            top: 0;
            left: 0;
            margin-top: -4px;
            background-position: -130px -220px;
            width: 29px;
            height: 29px; }
        .grading-pop .details-row .answer-details ul .bar .answer-value {
          width: auto;
          min-width: 104px;
          padding: 0 20px 0 0; }
      .grading-pop .details-row .answer-details ul li {
        margin: 0 0 12px -40px; }
        .grading-pop .details-row .answer-details ul li .text-result {
          display: inline-block;
          vertical-align: middle;
          margin-left: 65px;
          max-width: 500px; }
        .grading-pop .details-row .answer-details ul li.correct .text-result {
          color: #aad260; }
        .grading-pop .details-row .answer-details ul li.correct .bar {
          background: #aad260;
          color: #fff; }
        .grading-pop .details-row .answer-details ul li.incorrect .text-result {
          color: #e97564; }
        .grading-pop .details-row .answer-details ul li.incorrect .bar {
          background: #e97564;
          color: #fff; }
        .grading-pop .details-row .answer-details ul li.disabled .text-correct {
          padding-left: 0; }
        .grading-pop .details-row .answer-details ul li.disabled .text-result {
          color: #c2c2c2; }
        .grading-pop .details-row .answer-details ul li.disabled .bar {
          background: #c2c2c2;
          color: #fff; }

.grading-pop .link-cancel {
  float: left;
  margin: 10px 0 0 20px;
  color: #2c6580;
  text-decoration: underline; }
  .grading-pop .link-cancel:hover {
    text-decoration: none; }

input[type="radio"].customradio {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1; }
  input[type="radio"].customradio + .custom-radio {
    border-radius: 100%;
    cursor: pointer; }
    input[type="radio"].customradio + .custom-radio:before {
      content: '';
      position: absolute;
      top: 3px;
      right: 3px;
      bottom: 3px;
      left: 3px;
      background: #e97564;
      border-radius: 100%;
      opacity: 0; }
  input[type="radio"].customradio:checked + .custom-radio {
    border-radius: 100%;
    border-color: #e97564; }
    input[type="radio"].customradio:checked + .custom-radio:before {
      opacity: 1; }
  input[type="radio"].customradio:disabled + .custom-radio {
    opacity: .5; }
  input[type="radio"].customradio .custom-label {
    cursor: pointer; }

.custom-radio {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  box-shadow: inset 2px 2px rgba(1, 2, 2, 0.1);
  border: solid 2px #cecece;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-right: 5px; }

.assesment-dashboard {
  max-width: 1230px;
  margin: 0 auto 120px; }
  .assesment-dashboard .sectionBox {
    width: 450px;
    height: 300px;
    padding: 10px 50px;
    margin: 15px 23px 10px 2px;
    display: inline-block;
    vertical-align: top;
    border: 2px solid #eee;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 2px #f2f2f2; }
    .assesment-dashboard .sectionBox .content {
      height: 210px;
      overflow-y: scroll; }

.passageContentView img:not('.Wirisformula') {
  max-width: 100%;
  display: block;
  margin: 0 auto; }

.passageContentView table {
  border: 1px solid #000;
  border-collapse: collapse;
  margin: 0 auto 20px;
  text-align: center; }
  .passageContentView table td {
    border: 1px solid #000; }

.passageContentView .display {
  text-align: center; }

.passageContentView ol {
  overflow: hidden;
  counter-reset: item;
  list-style: none;
  padding: 0; }
  .passageContentView ol li:before {
    float: left;
    content: counters(item, upper-roman) " ";
    counter-increment: item;
    margin: 0 20px; }
  .passageContentView ol li.numericchoice:before {
    content: counters(item, ".") " "; }
  .passageContentView ol li.latinchoice:before {
    content: counter(item, lower-latin); }
  .passageContentView ol li.latinchoice-upper:before {
    content: counter(item, upper-latin); }
  .passageContentView ol li.romanchoice:before {
    content: counter(item, lower-roman); }
  .passageContentView ol li.romanchoice-upper:before {
    content: counter(item, upper-roman); }

.passageContentView ul li {
  list-style: none; }
  .passageContentView ul li.square {
    list-style: square; }
  .passageContentView ul li.circle {
    list-style: circle; }
  .passageContentView ul li.disc {
    list-style-type: disc; }

.passageContentView p.figlabel {
  text-align: center; }

.content-area.passageContentView table, #passage_content_data table, .question_txt table {
  border: 1px solid #000;
  border-collapse: collapse;
  margin: 0 auto; }
  .content-area.passageContentView table td, #passage_content_data table td, .question_txt table td {
    border: 1px solid #000; }

.rec-pessage .icons.passage {
  width: 25px; }

.selected-roaster-teacher-container .selected-roaster-teacher .remove-rosted-teacher-btn {
  position: relative;
  top: -2px;
  margin: 0 0 0 20px;
  display: inline-block;
  vertical-align: top;
  left: auto; }

.opt-grouped .SumoSelect > .optWrapper > .options > li:not(.disabled) {
  padding-left: 24px !important; }

.opt-grouped .SumoSelect > .optWrapper > .options > li:first-child:not(.disabled) {
  padding-left: 10px !important; }

.page-element {
  background: #ffffff;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e5e5e5)) !important;
  background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
  background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
  background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
  background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
  border-radius: 3px !important;
  padding: 5px 7px !important;
  color: #000 !important;
  font-size: 12px !important;
  line-height: 16px !important;
  border: 1px solid #767676 !important;
  left: -1000px; }

.page-element img {
  margin-right: 10px !important;
  margin-bottom: 10px !important; }

.syllabus-tax-area {
  width: 374px;
  height: 149px;
  -webkit-border-radius: 4px/4px 4px 3px 3px;
  -moz-border-radius: 4px/4px 4px 3px 3px;
  border-radius: 4px/4px 4px 3px 3px;
  background-color: #f8f8f8;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15);
  float: left;
  padding: 10px 5px; }

.bottom-border {
  position: relative;
  z-index: 1; }
  .bottom-border:after {
    background: #e4e4e4;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    margin: 0 0 0 -65px;
    position: absolute;
    right: 0;
    width: 1182px;
    z-index: -1; }

.top-border {
  position: relative;
  z-index: 1; }
  .top-border:after {
    background: #e4e4e4;
    top: 0;
    content: "";
    height: 1px;
    left: 0;
    margin: 0 0 0 -65px;
    position: absolute;
    right: 0;
    width: 1182px;
    z-index: -1; }

section.syllabus-details-page .syllabus-details-area {
  position: relative;
  z-index: 1; }
  section.syllabus-details-page .syllabus-details-area:after {
    background: #e4e4e4;
    top: 0;
    content: "";
    height: 1px;
    left: 0;
    margin: 0 0 0 -45px;
    position: absolute;
    right: 0;
    width: 1182px;
    z-index: -1; }

section.syllabus-details-page .info {
  font-size: 17px; }

.create_area2 {
  height: 138px; }

.table-title {
  display: block;
  font-size: 17px;
  line-height: 20px;
  padding: 0 90px 0 0; }

.static-tbl-sort {
  cursor: pointer;
  position: relative; }

.print.arc_item:hover .reply_box,
section .download.download-tooltip:hover .reply_box {
  display: block; }

.default-table-holder .default-table .download .reply_box,
.default-table-holder .default-table .star .reply_box,
section .downloadnew .reply_box,
section .download.download-tooltip .reply_box {
  height: 37px;
  left: -40px;
  top: -45px;
  width: 115px; }

section .downloadnew .reply_box {
  left: -49px; }

section .btn-delete-resource .reply_box {
  height: 37px;
  left: -47px !important;
  padding-bottom: 5px;
  top: -43px;
  width: 113px; }

section .ico-complete .reply_box {
  height: 37px;
  left: -40px !important;
  padding-bottom: 5px;
  top: -43px;
  width: 100px; }

i.print .reply_box {
  width: 90px;
  left: -33px;
  height: auto;
  top: -51px;
  padding: 10px 5px 12px; }

.default-table i.print .reply_box {
  padding: 10px 5px 12px; }

.custom-select-arrow {
  position: relative; }

.custom-select-arrow:after {
  content: "";
  display: block;
  right: 0;
  top: 0;
  position: absolute;
  margin: 20px 17px;
  background: url("../images/drop_Arrow.png") no-repeat;
  width: 10px;
  height: 6px; }

.default-table-holder .default-table .star:hover .reply_box,
.default-table-holder .default-table .download:hover .reply_box {
  display: block; }

.default-table-holder .default-table .listing i.print {
  background-position: -137px -33px;
  float: left;
  height: 22px;
  margin-left: 10px;
  margin-top: 7px;
  width: 25px;
  position: relative; }
  .default-table-holder .default-table .listing i.print:hover {
    background-position: -40px -60px;
    cursor: pointer; }

section .download .reply_box {
  left: -42px !important;
  top: -45px !important; }

section .people-share .reply_box {
  left: -40px !important; }

.dashboard-warpper {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  width: 1230px;
  margin: 0 auto 50px;
  position: relative; }
  .dashboard-warpper *, .dashboard-warpper *:before, .dashboard-warpper *:after {
    box-sizing: inherit;
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    -ms-box-sizing: inherit; }
  .dashboard-warpper .widget-holder {
    margin-right: -30px; }
    .dashboard-warpper .widget-holder:after {
      clear: both;
      content: "";
      display: block; }
  .dashboard-warpper .dashboard-widget {
    margin: 0 27px 30px 0;
    background: #fff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 465px;
    display: inline-block;
    vertical-align: top;
    width: 48.8%;
    padding: 10px 25px;
    max-width: 600px; }
    .dashboard-warpper .dashboard-widget img {
      display: block;
      max-width: 100%;
      margin: 0 auto;
      height: auto; }
    .dashboard-warpper .dashboard-widget h1 {
      position: relative;
      overflow: visible;
      padding: 0 0 10px;
      margin: 0 0 33px; }
      .dashboard-warpper .dashboard-widget h1:after {
        content: "";
        position: absolute;
        left: -25px;
        bottom: 0;
        height: 1px;
        right: -25px;
        background: #f2f2f3; }
  .dashboard-warpper .content-holder p {
    line-height: 30px;
    color: #6d6f75;
    margin: 0 0 30px; }
  .dashboard-warpper .dashboard-block > .headings {
    margin: 0 0 12px;
    background: #fff;
    padding: 10px 25px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); }
  .dashboard-warpper .dashboard-block:after {
    clear: both;
    content: "";
    display: block; }
  .dashboard-warpper h1 {
    color: #403f3c;
    overflow: hidden;
    font: 28px/35px "Museo Slab 900"; }
  .dashboard-warpper .upload_btn {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 0; }
  .dashboard-warpper .dashboard-list {
    color: #6d6f75;
    font: 16px/20px "droid_sansregular";
    overflow: hidden; }
    .dashboard-warpper .dashboard-list .title {
      display: block;
      font-size: 14px;
      margin: 0 0 30px; }
      .dashboard-warpper .dashboard-list .title .info {
        float: right;
        width: 90px;
        margin-left: 20px; }
    .dashboard-warpper .dashboard-list ul {
      margin: 0;
      padding: 0 0 10px;
      list-style: none; }
      .dashboard-warpper .dashboard-list ul li {
        margin: 0 0 20px; }
        .dashboard-warpper .dashboard-list ul li .text {
          overflow: hidden; }
        .dashboard-warpper .dashboard-list ul li .info,
        .dashboard-warpper .dashboard-list ul li .date {
          float: right;
          width: 90px;
          margin-left: 20px; }
        .dashboard-warpper .dashboard-list ul li a {
          color: #267d9e;
          text-decoration: underline; }
  .dashboard-warpper .act-plans {
    font-size: 21px;
    line-height: 25px;
    color: #707070; }
    .dashboard-warpper .act-plans .box {
      border-bottom: 1px solid #f2f2f3;
      padding: 0 0 35px; }
      .dashboard-warpper .act-plans .box .col1 {
        font-size: 22px; }
      .dashboard-warpper .act-plans .box:after {
        clear: both;
        content: "";
        display: block; }
    .dashboard-warpper .act-plans .upcoming-dates {
      padding: 45px 0 33px; }
      .dashboard-warpper .act-plans .upcoming-dates:after {
        clear: both;
        content: "";
        display: block; }
    .dashboard-warpper .act-plans .text-large {
      font-size: 62px;
      line-height: 70px;
      display: block;
      color: #e97564;
      margin: -13px 0 15px; }
    .dashboard-warpper .act-plans .date {
      display: block;
      font: 36px/42px 'droid_sansbold';
      color: #403f3c;
      padding: 15px 0 0; }
    .dashboard-warpper .act-plans .col1 {
      float: left;
      width: 290px; }
    .dashboard-warpper .act-plans .col2 {
      float: right;
      width: 225px; }

.selected-authorized-users-row {
  width: 100% !important; }

.error_blue {
  padding: 10px 54px 10px 190px;
  display: block;
  font-size: 14px;
  color: #2c6580;
  text-decoration: underline; }

.data_listing_header.listing-header2 p .up_arrow {
  position: static;
  display: inline-block !important;
  vertical-align: middle;
  height: 14px;
  margin: -3px 0 0 15px; }

.data_listing_header.listing-header2 p.desc .up_arrow {
  height: 6px;
  background-position: -27px -166px; }

.data_listing_header.listing-header2 p.desc.asc .up_arrow {
  background-position: -27px -158px; }

.data_listing_header.listing-header2 p.asc .up_arrow {
  height: 6px;
  background-position: -27px -158px; }

.data_listing_header.listing-header2 p .dwn_arrow {
  /*display: none !important;*/ }

.personal_listing .grid_data.personal_row ul.bg {
  background: #f6f8fa; }

section .data_listing ul {
  width: 100%; }

.filter-tip-item .edit-pin input[type="text"] {
  background: #f8f8f8;
  border: none;
  border-radius: 4px;
  box-shadow: 1px 1px 5px -1px #c8c8c8 inset;
  color: #403f3c;
  font: 13px/20px "open_sansregular";
  display: block;
  outline: none;
  padding: 10px;
  position: relative;
  width: 150px; }
  .filter-tip-item .edit-pin input[type="text"]::-webkit-input-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .edit-pin input[type="text"]::-moz-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .edit-pin input[type="text"]:-moz-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .edit-pin input[type="text"]:-ms-input-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .edit-pin input[type="text"].placeholder {
    font: 13px/20px "open_sansregular"; }

.filter-tip-item .new-filter-title {
  background: #f8f8f8;
  border: none;
  border-radius: 4px;
  box-shadow: 1px 1px 5px -1px #c8c8c8 inset;
  color: #403f3c;
  font: 13px/20px "open_sansregular";
  display: block;
  outline: none;
  padding: 10px;
  position: relative;
  width: 250px; }
  .filter-tip-item .new-filter-title::-webkit-input-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .new-filter-title::-moz-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .new-filter-title:-moz-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .new-filter-title:-ms-input-placeholder {
    font: 13px/20px "open_sansregular"; }
  .filter-tip-item .new-filter-title.placeholder {
    font: 13px/20px "open_sansregular"; }

.filter-tip-item .pin-action-btns a {
  display: inline-block;
  vertical-align: top;
  width: 22px;
  height: 22px;
  margin: 0 5px;
  position: relative;
  background: url("../images/sprite.png") no-repeat -40px -105px;
  text-indent: -9999px;
  overflow: hidden; }
  .filter-tip-item .pin-action-btns a:hover {
    background-position: -71px -101px; }
  .filter-tip-item .pin-action-btns a.delete-pin-item {
    height: 24px;
    width: 16px;
    background-position: -77px -186px; }
    .filter-tip-item .pin-action-btns a.delete-pin-item:hover {
      background-position: -77px -158px; }

.line_number {
  display: inline-block;
  width: 40px; }

.line_number_empty {
  display: inline-block;
  width: 40px; }

#passage_content_data p .bottom_bullet_spn,
.questions_passage p .bottom_bullet_spn {
  position: relative;
  display: inline;
  vertical-align: top;
  padding: 0 0 20px; }

.bottom_bullet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 9px !important;
  top: 16px; }

#nav ul {
  padding: 0; }

#nav ul li:hover {
  background: #ecf0f1; }

.rply_opts_list .reply_box {
  background: #f8f8f8; }

.rply_opts_list .reply_box ul li:hover {
  background: #ecf0f1; }

ul.holder li.bit-box {
  -moz-user-select: none;
  background-clip: padding-box;
  background-color: #ecf0f1 !important;
  background-image: none !important;
  border: 0 solid #aaaaaa;
  border-radius: 30px !important;
  color: #6d6f75;
  cursor: default;
  font-size: 12px;
  font-weight: normal;
  line-height: 13px;
  margin-right: 5px;
  padding: 3px 18px 3px 4px;
  position: relative;
  border: none !important; }

ul.holder li.bit-box a.closebutton {
  background-color: #d2dbe0 !important;
  border-radius: 50px !important;
  color: #6d6f75 !important;
  font: 13px "droid_sansregular";
  left: auto;
  padding-left: 2px !important;
  right: 3px;
  background-position: 1px 0 !important; }

.performance-tables .verbal-reasoning-table {
  overflow: hidden; }

.MathJax {
  font-size: 15px !important; }

.no-rec-popup-msg {
  overflow: hidden; }
  .no-rec-popup-msg li {
    text-align: center; }

.main-area {
  margin: 0 0 120px; }

.plus {
  width: 11px;
  height: 10px;
  background-position: -148px -335px;
  display: block;
  margin-top: 13px; }

.minus {
  width: 7px;
  height: 3px;
  background-position: -165px -340px;
  display: block;
  margin-top: 20px; }

.msgs_box.error-page {
  background: url(../images/error-image.jpg) no-repeat; }
  .msgs_box.error-page .tag-line {
    text-align: center;
    width: 100%;
    margin: 125px 0 0 0;
    overflow: hidden; }
    .msgs_box.error-page .tag-line h1 {
      font: 36px/45px 'droid_sansbold';
      margin-bottom: 10px; }
    .msgs_box.error-page .tag-line .sub-text {
      font: 18px/25px 'droid_sansbold'; }

.mypagination {
  text-align: center;
  margin-top: 20px; }

.mypagination ul {
  list-style: none; }

.mypagination ul li {
  display: inline;
  margin-left: 5px;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px; }

.mypagination li.active {
  background-color: #0D2655;
  color: #fff;
  border: 1px solid #0D2655;
  padding: 5px; }

.mypagination li.disabled {
  padding: 5px;
  border: 1px solid #ddd; }

.mypagination p {
  float: left;
  margin-left: 26px; }

.mypagination ul li a {
  padding: 5px; }

.mypagination ul li {
  padding-left: 0px;
  padding-right: 0px; }

.sidd-search-box {
  height: 28px;
  width: 91%;
  max-width: 100%;
  padding: 0 4%;
  font-size: 14px;
  border: 1px solid #aaa !important; }

.sidd-search-box-icon {
  background-image: url("../images/sidd_search_icon.png") !important;
  background-repeat: no-repeat;
  background-position: -42px bottom;
  background-color: transparent;
  border: none;
  width: 16px;
  height: 15px;
  cursor: text;
  float: right;
  position: absolute;
  right: 1px;
  top: 6px; }

.sidd-search-box::-webkit-input-placeholder {
  font-size: 14px !important;
  line-height: 24px;
  opacity: 1; }

.sidd-search-box:-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px !important;
  line-height: 27px;
  opacity: 1; }

.sidd-search-box::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px !important;
  line-height: 27px;
  opacity: 1; }

.sidd-search-box:-ms-input-placeholder {
  font-size: 14px !important;
  line-height: 27px;
  opacity: 1; }

/** styles for user dashboards **/
section .dashboard-wrapper {
  background-color: white;
  width: 1230px;
  margin: 0 auto;
  box-sizing: border-box; }

section .dashboard-wrapper .alert-container {
  box-sizing: border-box;
  width: 100%;
  background: transparent; }

section .dashboard-wrapper .alert-container button.close {
  background: 0 0;
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-appearance: none; }

section .dashboard-wrapper .alert-container .close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2; }

section .dashboard-wrapper .alert-container .close:focus, section .dashboard-wrapper .alert-container .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5; }

section .dashboard-wrapper .loading-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: transparent url("../images/ajax-preloader.gif") center center no-repeat; }

section .dashboard-wrapper .alert {
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 100%; }

section .dashboard-wrapper .alert h4 {
  margin-top: 0;
  color: inherit; }

section .dashboard-wrapper .alert .alert-link {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer; }

section .dashboard-wrapper .alert .alert-link:hover {
  color: #000;
  filter: alpha(opacity=50);
  opacity: .5; }

section .dashboard-wrapper .alert > p, section .dashboard-wrapper .alert > ul {
  margin-bottom: 0; }

section .dashboard-wrapper .alert p + p {
  margin-top: 5px; }

section .dashboard-wrapper .alert-dismissable,
section .dashboard-wrapper .alert-dismissible {
  padding-right: 35px; }

section .dashboard-wrapper .alert-dismissable .close,
section .dashboard-wrapper .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

section .dashboard-wrapper .alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }

section .dashboard-wrapper .alert-success hr {
  border-top-color: #c9e2b3; }

section .dashboard-wrapper .alert-success .alert-link {
  color: #2b542c; }

section .dashboard-wrapper .alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }

section .dashboard-wrapper .alert-info hr {
  border-top-color: #a6e1ec; }

section .dashboard-wrapper .alert-info .alert-link {
  color: #245269; }

section .dashboard-wrapper .alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }

section .dashboard-wrapper .alert-warning hr {
  border-top-color: #f7e1b5; }

section .dashboard-wrapper .alert-warning .alert-link {
  color: #66512c; }

section .dashboard-wrapper .alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }

section .dashboard-wrapper .alert-danger hr {
  border-top-color: #e4b9c0; }

section .dashboard-wrapper .alert-danger .alert-link {
  color: #843534; }

section .dashboard-wrapper .dashboard-header {
  box-shadow: 0 1px 2px #f2f2f2;
  background: #ffffff;
  padding: 3px 15px 0 15px;
  margin: 0;
  height: 54px;
  line-height: 54px; }

section .dashboard-wrapper .dashboard-header::after {
  clear: both;
  content: "";
  display: table; }

section .dashboard-wrapper .dashboard-header .headline {
  font: 28px "Museo Slab 900", serif;
  color: #403f3c;
  text-align: left;
  line-height: 54px;
  display: inline-block; }

section .dashboard-wrapper .dashboard-header .dashboard-menu {
  display: inline-block;
  width: 150px; }

section .dashboard-wrapper .dashboard-content {
  margin: 13px 0 100px 0;
  padding: 0; }

section .dashboard-wrapper .dashboard-content ul, section .dashboard-wrapper .dashboard-content li, section .dashboard-wrapper .dashboard-content ul > li, section .dashboard-wrapper .dashboard-content ul li ul li {
  list-style: none;
  list-style-type: none; }

section .dashboard-wrapper .dashboard-content ul.widget::after {
  clear: both;
  content: "";
  display: table; }

section .dashboard-wrapper .dashboard-content .dashboard-row {
  display: inline-block;
  background: #ffffff;
  box-shadow: 0 1px 2px #f2f2f2;
  width: 100%;
  margin-bottom: 30px; }

section .dashboard-wrapper .dashboard-content .dash-widget-header {
  color: inherit;
  display: block;
  font: 24px "Museo Slab 900", serif;
  border-bottom: #eaeaea 2px solid;
  padding-top: 3px;
  margin: 0 0 8px; }

section .dashboard-wrapper .dashboard-content .dash-widget-header span {
  display: inline-block;
  padding: 7px 13px; }

section .dashboard-wrapper .dashboard-content .dashboard-row .dash-widget-content {
  display: inline-block;
  float: left;
  width: 48%;
  margin: 10px;
  position: relative;
  height: 600px;
  overflow-y: auto; }

.dash-widget-full {
  width: 98% !important; }

.group_widget_area {
  width: 100%;
  display: inline-block;
  overflow: auto;
  white-space: nowrap;
  margin: 0px auto; }

.group_program_list {
  display: none;
  float: right;
  padding: 0 18px 15px 0;
  font-family: "droid_sansregular";
  font-size: 16px; }

/** styles for table sorter plugin **/
table.tablesorter thead tr .header {
  cursor: pointer; }

table.tablesorter thead tr .header i {
  margin: 8px 5px 0 0;
  width: 10px;
  height: 14px;
  background: url("/assets/images/sprite.png");
  background-position: -27px -158px;
  position: relative;
  float: right;
  display: inline-block; }

table.tablesorter thead tr .headerSortUp i {
  height: 6px;
  background-position: -27px -158px; }

table.tablesorter thead tr .headerSortDown i {
  height: 6px;
  background-position: -27px -166px; }

table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
  background-color: #8dbdd8; }

/** hathoora table */
.hathooraTitle {
  font-size: 18px;
  padding: 10px 0px;
  font-weight: bold; }

.hathooraGrid .noResults {
  padding: 10px;
  background: #FFF2AC;
  border: 1px solid #FF9100;
  color: #1D2859; }

.hathooraGrid table.hathooraTable {
  width: 100%;
  border: 1px solid #e6e7e8;
  border-top: none; }

.hathooraGrid table.hathooraTable tbody td:first-child,
.hathooraGrid table.hathooraTable thead th:first-child {
  border-left: none; }

.hathooraGrid table.hathooraTable thead th {
  text-align: left;
  padding: 4px 0;
  color: #909090;
  background: #efefef;
  border-top: 1px solid #e6e7e8;
  height: 40px; }

.hathooraGrid table.hathooraTable tbody td {
  padding: 9px 10px;
  vertical-align: middle;
  font-size: 15px;
  border-left: 1px solid #E6E7E8; }

.hathooraGrid table.hathooraTable tbody td a {
  color: #15448a; }

/*.hathooraGrid table.hathooraTable tbody tr:hover td,*/
/*.hathooraGrid table.hathooraTable tbody tr { border-top: 1px solid #e6e7e8; }*/
.hathooraGrid table.hathooraTable tbody tr:nth-child(even) {
  background: #F6F8FA; }

.hathooraGrid table.hathooraTable thead th.s {
  width: 3%; }

.hathooraGrid table.hathooraTable thead th.m {
  width: 8%; }

.hathooraGrid table.hathooraTable thead th.1 {
  width: 12%; }

.hathooraGrid table.hathooraTable tbody td.d {
  text-align: right; }

.hathooraGrid table.hathooraTable tbody td.c {
  text-align: center; }

/* coulmn sort & delete */
.hathooraGrid .hathooraColumnName {
  float: left;
  padding-left: 10px;
  margin-right: 40px;
  font-size: 15px;
  color: #000;
  font-weight: bold; }

.hathooraGrid .hathooraColumnOptions {
  float: right;
  width: 40px;
  overflow: hidden;
  margin-left: -40px; }

.hathooraGrid .hathooraColumnSort {
  display: none;
  font-weight: bold;
  float: right;
  cursor: pointer;
  margin-right: 5px; }

.hathooraGrid .hathooraColumnDel {
  display: none;
  font-weight: bold;
  float: right;
  cursor: pointer;
  color: red;
  margin-right: 5px; }

/* column is sorted */
.hathooraGrid .hathooraColumnSorted {
  background: #efefef !important; }

.hathooraGrid .hathooraColumnSorted .hathooraColumnSort {
  display: block; }

.hathooraGrid table.hathooraTable thead th:hover .hathooraColumnSort,
.hathooraGrid table.hathooraTable thead th:hover .hathooraColumnDel {
  display: block; }

.hathooraPreTable {
  margin: 0 10px 10px 10px; }

.hathooraPostTable {
  margin: 10px 10px 0 10px; }

.hathooraPaginatorInfo {
  color: #333;
  font-size: 13px; }

.hathooraPaginator {
  text-align: right;
  font-size: 16px; }

.hathooraPaginator a {
  display: inline-block;
  padding: 2px 8px;
  background: #efefef;
  margin-right: 5px; }

.hathooraPaginator a.hathooraPagiActive {
  background: #0d2655;
  color: #fff; }

.hathooraWidget {
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
  font-size: 15px; }

.hathooraWidget:after {
  clear: both; }

.hathooraWidgetSubmit {
  background-color: #0e1f5b;
  border-radius: 4px;
  box-shadow: 0 3px 0 0 #b4b4b4;
  color: #fff;
  cursor: pointer;
  display: block;
  padding: 5px 10px;
  position: absolute;
  left: 500px;
  top: -5px; }

.hathooraWidgetColumn {
  margin-bottom: 10px; }

.hathooraWidgetColumn .hathooraWidgetLabel {
  margin-left: 200px;
  display: inline-block;
  width: 120px; }

.hathooraWidgetColumn .hathooraWidgetAddColumn {
  margin-left: 20px;
  display: inline-block;
  width: 150px; }

.hathooraWidgetSearch {
  margin-bottom: 10px; }

.hathooraWidgetSearch .hathooraWidgetLabel {
  margin-left: 200px;
  display: inline-block;
  width: 120px; }

.hathooraWidgetSearch .hathooraWidgetAddSearch {
  margin-left: 20px;
  display: inline-block;
  width: 150px; }

.hathooraWidgetSearch .hathooraWidgetSearchDetails {
  margin-left: 200px;
  margin-top: 10px; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria {
  padding: 10px;
  background: #ccc;
  width: 450px; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria .hathooraWidgetSearchCriteriaRemove {
  float: right;
  color: crimson;
  cursor: pointer;
  display: none;
  width: 20px; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria:hover .hathooraWidgetSearchCriteriaRemove {
  display: block; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria > div {
  display: inline-block;
  width: 250px; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria .hathooraWidgetSearchCriteriaLabel {
  width: 140px;
  margin-right: 10px; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria .hathooraWidgetSearchCriteriaOperation select {
  display: inline-block;
  width: 100px; }

.hathooraWidgetSearch .hathooraWidgetSearchCriteria .hathooraWidgetSearchCriteriaOperation input {
  float: right; }

.hathooraDebug {
  font-size: 10px;
  border: 1px solid #F1E767;
  background: #F4F4F4;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */ }

.hathooraDebugError {
  background: #FFCCCC; }

p.note {
  font-size: 11px;
  margin-left: 30px; }

#s2id_institution_id {
  margin-right: 25px; }

#s2id_institution_id .select2-choices {
  border-radius: 4px !important;
  box-shadow: inset 1px 1px 5px -1px #dddddd !important;
  padding: 8px; }

#ocr-image-view {
  width: 850px;
  height: 1100px;
  margin: 10px; }

#ocr-image-view > img {
  width: 100%; }

#transfer-score-container {
  display: none;
  height: 250px;
  width: 550px;
  padding: 10px 10px 10px 30px; }

#transfer-score-container.tall {
  height: 400px; }

#transfer-score-container div.input {
  padding: 15px 0 15px 0; }

#transfer-score-container input {
  display: inline;
  height: 20px;
  font-size: 14px; }

#transfer-score-container div.buttons {
  padding-top: 25px; }

#transfer-score-container .error {
  padding-bottom: 15px; }

#transfer-score-container button {
  color: white;
  background-color: #0e1f5b;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  border: none; }

#transfer-score-container ul {
  padding-top: 15px;
  list-style-type: none; }

/* Copyright: Guillermo Rauch <http://devthought.com/> - Distributed under MIT - Keep this message! */
/* TextboxList sample CSS */
ul.holder {
  margin: 0;
  border: #e4e4e4 solid 1px;
  position: relative !important;
  overflow: hidden;
  height: auto !important;
  height: 1%;
  padding: 4px 5px 0;
  background: #f8f8f8;
  border-radius: 4px !important;
  box-shadow: 1px 1px 5px -1px #dddddd inset !important;
  color: #403f3c; }

*:first-child + html ul.holder {
  padding-bottom: 2px; }

* html ul.holder {
  padding-bottom: 2px; }

/* ie7 and below */
ul.holder li {
  float: left;
  list-style-type: none;
  margin: 0 5px 4px 0;
  white-space: nowrap; }

ul.holder li.bit-box, ul.holder li.bit-input input {
  font: 11px "Lucida Grande", "Verdana"; }

ul.holder li.bit-box {
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  border: 1px solid #d4d4d4;
  background: #ffffff;
  padding: 3px 5px 4px; }

ul.holder li.bit-box-focus {
  border-color: #598BEC;
  background: #598BEC;
  color: #fff; }

ul.holder li.bit-input input {
  width: auto;
  overflow: visible;
  margin: 0;
  border: 0px;
  outline: 0;
  padding: 3px 0px 2px;
  background-color: #f7f7f7; }

/* no left/right padding here please */
ul.holder li.bit-input input.smallinput {
  width: 20px; }

/* Facebook demo CSS */
ul.holder {
  width: 500px; }

ul.holder {
  margin: 0 !important; }

ul.holder li.bit-box, #apple-list ul.holder li.bit-box {
  padding-right: 15px;
  position: relative;
  z-index: 1; }

#apple-list ul.holder li.bit-input {
  margin: 0; }

#apple-list ul.holder li.bit-input input.smallinput {
  width: 5px; }

ul.holder li.bit-hover {
  background: #ffffff;
  border: 1px solid #d4d4d4; }

ul.holder li.bit-box-focus {
  border-color: #d4d4d4;
  background: #ffffff;
  color: #3b3b3b; }

ul.holder li.bit-box a.closebutton {
  position: absolute;
  right: 4px;
  top: 7px;
  display: block;
  width: 7px;
  height: 7px;
  font-size: 1px;
  background: url("close.gif"); }

ul.holder li.bit-box a.closebutton:hover {
  background-position: 7px; }

ul.holder li.bit-box-focus a.closebutton, ul.holder li.bit-box-focus a.closebutton:hover {
  background-position: bottom; }

/* Autocompleter */
.facebook-auto {
  display: none;
  position: absolute;
  background: #f7f7f7 !important;
  z-index: 1001;
  margin-top: 37px; }

.facebook-auto .default {
  padding: 5px 7px;
  width: 456px !important;
  border: 1px solid #ccc;
  border-width: 0 1px 1px;
  font-family: "Lucida Grande","Verdana";
  font-size: 11px; }

.facebook-auto ul {
  border-bottom: 1px solid #ccc;
  display: block;
  margin: 0px !important;
  margin-top: 0 !important;
  padding: 0;
  overflow: auto;
  position: absolute;
  z-index: 9999; }

.facebook-auto ul li {
  padding: 5px 12px;
  z-index: 1000;
  cursor: pointer;
  margin: 0;
  list-style-type: none;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  border-width: 0 1px 1px;
  font: 11px "Lucida Grande", "Verdana";
  background-color: #fff; }

.facebook-auto ul li:hover {
  background: none; }

/*.facebook-auto ul li em { font-weight: bold; font-style: normal; background: #ccc; }*/
.facebook-auto ul li.auto-focus {
  background: #fff; }

.facebook-auto ul li.auto-focus em {
  background: none; }

.deleted {
  background-color: #4173CC !important;
  color: #ffffff !important; }

.hidden {
  display: none; }

#demo ul.holder li.bit-input input {
  padding: 2px 0 1px;
  border: 1px solid #999; }

.ie6fix {
  height: 1px;
  width: 1px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1; }

/* jquery.Jcrop.css v0.9.12 - MIT License */
/*
  The outer-most container in a typical Jcrop instance
  If you are having difficulty with formatting related to styles
  on a parent element, place any fixes here or in a like selector

  You can also style this element if you want to add a border, etc
  A better method for styling can be seen below with .jcrop-light
  (Add a class to the holder and style elements for that extended class)
*/
.jcrop-holder {
  direction: ltr;
  text-align: left; }

/* Selection Border */
.jcrop-vline,
.jcrop-hline {
  background: #ffffff url("../images/Jcrop.gif");
  font-size: 0;
  position: absolute; }

.jcrop-vline {
  height: 100%;
  width: 1px !important; }

.jcrop-vline.right {
  right: 0; }

.jcrop-hline {
  height: 1px !important;
  width: 100%; }

.jcrop-hline.bottom {
  bottom: 0; }

/* Invisible click targets */
.jcrop-tracker {
  height: 100%;
  width: 100%;
  /* "turn off" link highlight */
  -webkit-tap-highlight-color: transparent;
  /* disable callout, image save panel */
  -webkit-touch-callout: none;
  /* disable cut copy paste */
  -webkit-user-select: none; }

/* Selection Handles */
.jcrop-handle {
  background-color: #333333;
  border: 1px #eeeeee solid;
  width: 7px;
  height: 7px;
  font-size: 1px; }

.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0; }

.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px; }

.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%; }

.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%; }

.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0; }

.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0; }

.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0; }

.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px; }

/* Dragbars */
.jcrop-dragbar.ord-n,
.jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%; }

.jcrop-dragbar.ord-e,
.jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px; }

.jcrop-dragbar.ord-n {
  margin-top: -4px; }

.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px; }

.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0; }

.jcrop-dragbar.ord-w {
  margin-left: -4px; }

/* The "jcrop-light" class/extension */
.jcrop-light .jcrop-vline,
.jcrop-light .jcrop-hline {
  background: #ffffff;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important; }

.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #000000;
  border-color: #ffffff;
  border-radius: 3px; }

/* The "jcrop-dark" class/extension */
.jcrop-dark .jcrop-vline,
.jcrop-dark .jcrop-hline {
  background: #000000;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important; }

.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #ffffff;
  border-color: #000000;
  border-radius: 3px; }

/* Simple macro to turn off the antlines */
.solid-line .jcrop-vline,
.solid-line .jcrop-hline {
  background: #ffffff; }

/* Fix for twitter bootstrap et al. */
.jcrop-holder img,
img.jcrop-preview {
  max-width: none; }

.mejs-offscreen {
  position: absolute !important;
  top: -10000px;
  left: -10000px;
  overflow: hidden;
  width: 1px;
  height: 1px; }

.mejs-container {
  position: relative;
  background: #000;
  font-family: Helvetica,Arial;
  text-align: left;
  vertical-align: top;
  text-indent: 0; }

.me-plugin {
  position: absolute; }

.mejs-embed, .mejs-embed body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden; }

.mejs-fullscreen {
  overflow: hidden !important; }

.mejs-container-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1000; }

.mejs-container-fullscreen .mejs-mediaelement, .mejs-container-fullscreen video {
  width: 100%;
  height: 100%; }

.mejs-clear {
  clear: both; }

.mejs-background {
  position: absolute;
  top: 0;
  left: 0; }

.mejs-mediaelement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.mejs-poster {
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat; }

:root .mejs-poster img {
  display: none; }

.mejs-poster img {
  border: 0;
  padding: 0;
  border: 0; }

.mejs-overlay {
  position: absolute;
  top: 0;
  left: 0; }

.mejs-overlay-play {
  cursor: pointer; }

.mejs-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: url(bigplay.svg) no-repeat; }

.no-svg .mejs-overlay-button {
  background-image: url(bigplay.png); }

.mejs-overlay:hover .mejs-overlay-button {
  background-position: 0 -100px; }

.mejs-overlay-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: #333;
  background: url(background.png);
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(50, 50, 50, 0.9)), to(rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: linear-gradient(rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9)); }

.mejs-overlay-loading span {
  display: block;
  width: 80px;
  height: 80px;
  background: transparent url(loading.gif) 50% 50% no-repeat; }

.mejs-container .mejs-controls {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  background: url(background.png);
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  height: 30px;
  width: 100%; }

.mejs-container .mejs-controls div {
  list-style-type: none;
  background-image: none;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 26px;
  font-size: 11px;
  line-height: 11px;
  font-family: Helvetica,Arial;
  border: 0; }

.mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  margin: 7px 5px;
  padding: 0;
  position: absolute;
  height: 16px;
  width: 16px;
  border: 0;
  background: transparent url(controls.svg) no-repeat; }

.no-svg .mejs-controls .mejs-button button {
  background-image: url(controls.png); }

.mejs-controls .mejs-button button:focus {
  outline: dotted 1px #999; }

.mejs-container .mejs-controls .mejs-time {
  color: #fff;
  display: block;
  height: 17px;
  width: auto;
  padding: 10px 3px 0;
  overflow: hidden;
  text-align: center;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.mejs-container .mejs-controls .mejs-time a {
  color: #fff;
  font-size: 11px;
  line-height: 12px;
  display: block;
  float: left;
  margin: 1px 2px 0 0;
  width: auto; }

.mejs-controls .mejs-play button {
  background-position: 0 0; }

.mejs-controls .mejs-pause button {
  background-position: 0 -16px; }

.mejs-controls .mejs-stop button {
  background-position: -112px 0; }

.mejs-controls div.mejs-time-rail {
  direction: ltr;
  width: 200px;
  padding-top: 5px; }

.mejs-controls .mejs-time-rail span, .mejs-controls .mejs-time-rail a {
  display: block;
  position: absolute;
  width: 180px;
  height: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer; }

.mejs-controls .mejs-time-rail .mejs-time-total {
  margin: 5px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8)); }

.mejs-controls .mejs-time-rail .mejs-time-buffering {
  width: 100%;
  background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 15px 15px;
  -moz-background-size: 15px 15px;
  -o-background-size: 15px 15px;
  background-size: 15px 15px;
  -webkit-animation: buffering-stripes 2s linear infinite;
  -moz-animation: buffering-stripes 2s linear infinite;
  -ms-animation: buffering-stripes 2s linear infinite;
  -o-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite; }

@-webkit-keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

@-moz-keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

@-ms-keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

@-o-keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

@keyframes buffering-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 30px 0; } }

.mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #3caac8;
  background: rgba(60, 170, 200, 0.8);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(44, 124, 145, 0.8)), to(rgba(78, 183, 212, 0.8)));
  background: -webkit-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -moz-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -o-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -ms-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: linear-gradient(rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  width: 0; }

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  width: 0; }

.mejs-controls .mejs-time-rail .mejs-time-handle {
  display: none;
  position: absolute;
  margin: 0;
  width: 10px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  border: solid 2px #333;
  top: -2px;
  text-align: center; }

.mejs-controls .mejs-time-rail .mejs-time-float {
  position: absolute;
  display: none;
  background: #eee;
  width: 36px;
  height: 17px;
  border: solid 1px #333;
  top: -26px;
  margin-left: -18px;
  text-align: center;
  color: #111; }

.mejs-controls .mejs-time-rail .mejs-time-float-current {
  margin: 2px;
  width: 30px;
  display: block;
  text-align: center;
  left: 0; }

.mejs-controls .mejs-time-rail .mejs-time-float-corner {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  line-height: 0;
  border: solid 5px #eee;
  border-color: #eee transparent transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 15px;
  left: 13px; }

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
  width: 48px; }

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
  width: 44px; }

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
  left: 18px; }

.mejs-controls .mejs-fullscreen-button button {
  background-position: -32px 0; }

.mejs-controls .mejs-unfullscreen button {
  background-position: -32px -16px; }

.mejs-controls .mejs-mute button {
  background-position: -16px -16px; }

.mejs-controls .mejs-unmute button {
  background-position: -16px 0; }

.mejs-controls .mejs-volume-button {
  position: relative; }

.mejs-controls .mejs-volume-button .mejs-volume-slider {
  display: none;
  height: 115px;
  width: 25px;
  background: url(background.png);
  background: rgba(50, 50, 50, 0.7);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: -115px;
  left: 0;
  z-index: 1;
  position: absolute;
  margin: 0; }

.mejs-controls .mejs-volume-button:hover {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px; }

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.5);
  margin: 0; }

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  margin: 0; }

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
  position: absolute;
  left: 4px;
  top: -3px;
  width: 16px;
  height: 6px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  cursor: N-resize;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  margin: 0; }

.mejs-controls a.mejs-horizontal-volume-slider {
  height: 26px;
  width: 56px;
  position: relative;
  display: block;
  float: left;
  vertical-align: middle; }

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  position: absolute;
  left: 0;
  top: 11px;
  width: 50px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8)); }

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  position: absolute;
  left: 0;
  top: 11px;
  width: 50px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8)); }

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  display: none; }

.mejs-controls .mejs-captions-button {
  position: relative; }

.mejs-controls .mejs-captions-button button {
  background-position: -48px 0; }

.mejs-controls .mejs-captions-button .mejs-captions-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -51px;
  width: 85px;
  height: 100px;
  background: url(background.png);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px 10px 0;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden; }

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
  margin: 0 0 6px;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden; }

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px; }

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
  width: 55px;
  float: left;
  padding: 4px 0 0;
  line-height: 15px;
  font-family: helvetica,arial;
  font-size: 10px; }

.mejs-controls .mejs-captions-button .mejs-captions-translations {
  font-size: 10px;
  margin: 0 0 5px; }

.mejs-chapters {
  position: absolute;
  top: 0;
  left: 0;
  -xborder-right: solid 1px #fff;
  width: 10000px;
  z-index: 1; }

.mejs-chapters .mejs-chapter {
  position: absolute;
  float: left;
  background: #222;
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232, endColorstr=#000000);
  overflow: hidden;
  border: 0; }

.mejs-chapters .mejs-chapter .mejs-chapter-block {
  font-size: 11px;
  color: #fff;
  padding: 5px;
  display: block;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  cursor: pointer; }

.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
  border-right: 0; }

.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
  background: #666;
  background: rgba(102, 102, 102, 0.7);
  background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(102, 102, 102, 0.7)), to(rgba(50, 50, 50, 0.6)));
  background: -webkit-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -moz-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -o-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -ms-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: linear-gradient(rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666, endColorstr=#323232); }

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
  font-size: 12px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 3px;
  line-height: 12px; }

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
  font-size: 12px;
  line-height: 12px;
  margin: 3px 0 4px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis; }

.mejs-captions-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  color: #fff; }

.mejs-captions-layer a {
  color: #fff;
  text-decoration: underline; }

.mejs-captions-layer[lang=ar] {
  font-size: 20px;
  font-weight: 400; }

.mejs-captions-position {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0; }

.mejs-captions-position-hover {
  bottom: 35px; }

.mejs-captions-text {
  padding: 3px 5px;
  background: url(background.png);
  background: rgba(20, 20, 20, 0.5);
  white-space: pre-wrap; }

.me-cannotplay a {
  color: #fff;
  font-weight: 700; }

.me-cannotplay span {
  padding: 15px;
  display: block; }

.mejs-controls .mejs-loop-off button {
  background-position: -64px -16px; }

.mejs-controls .mejs-loop-on button {
  background-position: -64px 0; }

.mejs-controls .mejs-backlight-off button {
  background-position: -80px -16px; }

.mejs-controls .mejs-backlight-on button {
  background-position: -80px 0; }

.mejs-controls .mejs-picturecontrols-button {
  background-position: -96px 0; }

.mejs-contextmenu {
  position: absolute;
  width: 150px;
  padding: 10px;
  border-radius: 4px;
  top: 0;
  left: 0;
  background: #fff;
  border: solid 1px #999;
  z-index: 1001; }

.mejs-contextmenu .mejs-contextmenu-separator {
  height: 1px;
  font-size: 0;
  margin: 5px 6px;
  background: #333; }

.mejs-contextmenu .mejs-contextmenu-item {
  font-family: Helvetica,Arial;
  font-size: 12px;
  padding: 4px 6px;
  cursor: pointer;
  color: #333; }

.mejs-contextmenu .mejs-contextmenu-item:hover {
  background: #2C7C91;
  color: #fff; }

.mejs-controls .mejs-sourcechooser-button {
  position: relative; }

.mejs-controls .mejs-sourcechooser-button button {
  background-position: -128px 0; }

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -10px;
  width: 130px;
  height: 100px;
  background: url(background.png);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden; }

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
  margin: 0 0 6px;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden; }

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px; }

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
  width: 100px;
  float: left;
  padding: 4px 0 0;
  line-height: 15px;
  font-family: helvetica,arial;
  font-size: 10px; }

.mejs-postroll-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(background.png);
  background: rgba(50, 50, 50, 0.7);
  z-index: 1000;
  overflow: hidden; }

.mejs-postroll-layer-content {
  width: 100%;
  height: 100%; }

.mejs-postroll-close {
  position: absolute;
  right: 0;
  top: 0;
  background: url(background.png);
  background: rgba(50, 50, 50, 0.7);
  color: #fff;
  padding: 4px;
  z-index: 100;
  cursor: pointer; }

div.mejs-speed-button {
  width: 46px !important;
  position: relative; }

.mejs-controls .mejs-button.mejs-speed-button button {
  background: transparent;
  width: 36px;
  font-size: 11px;
  line-height: normal;
  color: #fff; }

.mejs-controls .mejs-speed-button .mejs-speed-selector {
  visibility: hidden;
  position: absolute;
  top: -100px;
  left: -10px;
  width: 60px;
  height: 100px;
  background: url(background.png);
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 0;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
  visibility: visible; }

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
  color: #21f8f8; }

.mejs-controls .mejs-speed-button .mejs-speed-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden; }

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li {
  margin: 0 0 6px;
  padding: 0 10px;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden; }

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
  display: none; }

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label {
  width: 60px;
  float: left;
  padding: 4px 0 0;
  line-height: 15px;
  font-family: helvetica,arial;
  font-size: 11.5px;
  color: #fff;
  margin-left: 5px;
  cursor: pointer; }

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover {
  background-color: #c8c8c8 !important;
  background-color: rgba(255, 255, 255, 0.4) !important; }

.mejs-controls .mejs-button.mejs-skip-back-button {
  background: transparent url(skipback.png) no-repeat;
  background-position: 3px 3px; }

.mejs-controls .mejs-button.mejs-skip-back-button button {
  background: transparent;
  font-size: 9px;
  line-height: normal;
  color: #fff; }

#assignmentEditBar div:nth-child(2) {
  display: none;
  position: relative;
}

#assignmentEditBar > div > input {
  left: 20px;
  width: 410px;
  height: 30px;
  padding: 3px 0px 3px 10px;
  margin-bottom: 13px;
  font-size: 20px;
}

#assignmentEditBar > div > .updating-button {
  display: none;
}

#assignmentEditBar > .update-button {
  margin-left: 0;
}

#assignmentEditBar > .edit-toggle {
  margin-top: 5px;
}

.titleEditButton {
  float: right;
  padding-bottom: 8px;
}


