/*Key frame animations for progress bar when it's in "processing" state*/
@-webkit-keyframes progress-bar-stripes {
  from {background-position: 40px 0;}
  to {background-position: 0 0;}
}

@-moz-keyframes progress-bar-stripes {
  from {background-position: 40px 0;}
  to {background-position: 0 0;}
}

@-ms-keyframes progress-bar-stripes {
  from {background-position: 40px 0;}
  to {background-position: 0 0;}
}

@-o-keyframes progress-bar-stripes {
  from {background-position: 0 0;}
  to {background-position: 40px 0;}
}

@keyframes progress-bar-stripes {
  from {background-position: 40px 0;}
  to {background-position: 0 0;}
}
body{
  background:#333;
  height:100%;
  overflow-x:hidden;
}
ul.hoz { margin: 0; padding: 0; list-style: none; }
ul.hoz li { display: inline; }
li [class^="icon-"],
li [class*=" icon-"]{
  width:0.9em;
}
/*Components*/
.comp-decoratedUploader{
    position:relative;
    width:100%;
    height:28px;
    overflow:hidden;
}
.comp-decoratedUploader input{
    position:absolute;
    top:0;opacity:0;
    cursor:pointer;
    z-index:3;
    width:100%;
    height:28px;
    font-size:15px;
    letter-spacing:0.5px;
}
.comp-decoratedUploader span.filename{
    display:block;
    width:100%;
    height:28px;
    border:1px solid #ccc;
    border-radius:3px;
    padding-left:5px;
    padding-right:37px;
    font-size:14px;
    line-height:26px;
    color:#333;
    font-weight:bold;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;
}
.comp-decoratedUploader span.action{
    position:absolute;
    top:0;right:0;
    height:100%;
    z-index:2;
    background:#333;
    text-align:center;
    border-radius:0 3px 3px 0;
    width:37px;
}
.comp-decoratedUploader span.action i{
    font-size:25px;
    line-height:30px;
    text-shadow:0 -1px 0 #000;
    color:#fbfbfb;
}
.comp-progressbar{
  margin:0 auto;
  color:#999;
  text-transform:uppercase;
  text-align:center;
}
.comp-progressbar .pb{
  width:100%;
  position:relative;
  height:10px;
  overflow:hidden;
  background:#ccc;
  border-radius:10px;
  box-shadow:inset 0 0 3px #999;
}
.comp-progressbar .bar{
  position:absolute;
  top:0;left:0;
  height:100%;
  width:0;
  background:#008c23;
  border-radius:10px;
  box-shadow:inset 0 0 3px #999;
  -webkit-transition:width 0.5s;
  -moz-transition:width 0.5s;
  -ms-transition:width 0.5s;
  -o-transition:width 0.5s;
  transition:width 0.5s;
}
.comp-progressbar span.pbcaption{
  font-size:11px;
  line-height:18px;
  display:block;
  font-weight:bold;
  text-shadow:1px 1px 2px #fff;
}
.comp-progressbar.state-indefinite .bar{
  -webkit-transition:width 0s;
  -moz-transition:width 0s;
  -ms-transition:width 0s;
  -o-transition:width 0s;
  transition:width 0s;
  width:100% !important;
  background-color: #008c23;
  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: -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: 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: 20px 20px;
     -moz-background-size: 20px 20px;
       -o-background-size: 20px 20px;
          background-size: 20px 20px;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
     -moz-animation: progress-bar-stripes 1s linear infinite;
      -ms-animation: progress-bar-stripes 1s linear infinite;
       -o-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

.comp-circlebutton{
  width:121px;
  height:121px;
  display:block;
  background: transparent url("../images/circle_buttons.png") 0 0;
  overflow:hidden;
  margin:10px auto;
}
.comp-circlebutton i{
  width: 90px;
  text-align: center;
  display: block;
  font-size: 50px;
  line-height: 121px;
  margin: 0 auto;
  color:#333;
  text-shadow:0 -1px 0 #000;
}
.comp-circlebutton i.icon-play{
  margin: 5px 20px;
}
.comp-circlebutton.hoverable{
  cursor:pointer;
}
.comp-circlebutton.hoverable:hover{
  background-position:0 -123px;
}
.comp-circlebutton.hoverable:hover i{
  color:#777;
  text-shadow:0 -1px 0 #444;
}
.comp-circlebutton.dark{
  background-position:0 -246px;
}
.comp-circlebutton.dark i{
  color:#ccc;
  text-shadow:0 -1px 0 #666;
}
.comp-circlebutton.red{
  background-position:0 -369px;
}
.comp-circlebutton.red i{
  color:#b20000;
  text-shadow:none;
}

.slideMessage{
  background:#fff;
  display:table;
  text-align:center;
}
.slideMessage p{
  color:#999;
}
.slideMessage p.upload,
.slideMessage p.convert{
  display:none;
}
.slideMessage p.estimate{
  color:#333;
}
.slideMessage p.conv_msg{
  text-transform:uppercase;
  font-size:11px;
}
.slideMessage .message{
  padding:0 25px;
  display:table-cell;
  vertical-align:middle;
  font-weight:bold;
}
.slideMessage .comp-progressbar{
  margin-top:15px;
  width:160px;
}
.slideMessage .comp-progressbar .pbcaption{
  line-height:22px;
}

.is_loading{
  background-image:url("../images/large_preloader.gif");
  background-repeat:no-repeat;
  background-position:center center;
}

.flashHolder{
  position:absolute;
  top:4px;left:4px;right:4px;
  bottom:4px;
}
.flashHolder-prestyled,.countdown,iframe.ie_flash_cover,
iframe.ie_dd_cover,div.dd_cover,.flash_container{
  position:absolute;
  top:0;left:0;
  width:100%;
  height:100%;
}
iframe.ie_dd_cover,div.dd_cover{
  height:59px;
  opacity:0;
}
iframe.ie_dd_cover{
  opacity:1;
  height:0;
  position:relative;
  top:0px;
}
div.dd_cover{
  background: #000;
  color: #fff;
  text-shadow: 0 -1px 0 #999;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 60px;
  -webkit-transition:opacity 0.3s;
  -moz-transition:opacity 0.3s;
  -ms-transition:opacity 0.3s;
  -o-transition:opacity 0.3s;
  transition:opacity 0.3s;
}
.hide_tabs div.dd_cover{
  opacity:1;
}
.hide_tabs iframe.ie_dd_cover{
  height:59px;
}
.countdown{
  text-align:center;
  background: #fff;
  color: #ebebeb;
  font-size: 200px;
  text-shadow: 0 -1px 0 #aaa;
  line-height: 120%;
}

p.buttonhelp{
  text-align: center !important;
  text-transform: none !important;
  font-size: 12px !important;
  margin:0 !important;
  margin-bottom:10px !important;
}
p.buttonhelp{
  color:#333 !important;
}

.click_to_record p.buttonhelp{
  font-weight: bold;
  text-align: right !important;
  font-size: 15px !important;
  margin: 20px 45px 15px 0 !important;
}
.click_to_record p.buttonhelp i{
  font-size:20px !important;
}
.click_to_record.audio p.buttonhelp{
  margin-right:60px !important;
}

.ui-spinner{
  border-radius:4px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
  width:70px;
}
.ui-spinner-button{
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
  text-decoration:none !important;
  background:#e6e6e6;
  color:#555;
  line-height: 14px;
  font-size: 0.6em;
}
.ui-spinner-button:hover{
  background:#dadada;
  color:#212121;
}
.ui-spinner-up{
  top:0;
}
.ui-spinner-down{
  bottom:0;
}

/*Custom Scrollbars*/
.jspVerticalBar{width:8px;}
.jspHorizontalBar{height:8px;}
.jspDrag{background:#444;left:0;cursor:pointer;width:8px;box-shadow:0 0 3px #444;}
.jspTrack{position:relative;background:#ccc;border-radius:5px;box-shadow:inset 0 0 3px #999;}
.jspVerticalBar .jspArrow{height:8px;}
.jspHorizontalBar .jspArrow{width:8px;}

/*Tooltip overrides*/
#tt_MainHolder.le{
  margin-top:-20px;
}
#tt_MainHolder.bo{
  margin-top:-10px;
  margin-left:8px;
}
/*END Components*/
#fullScreenWrapper{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}

@media (max-width: 374px) {
  #fullScreenWrapper {
    height: 100vh;
  }
}


#contentWrapper{
  width:96%;
  height:100%;
  min-width:100;
  min-height:100%;
  margin:0 auto;
  background:#fdfdfd;
  padding:0 2%;
/*  border-radius:5px; */
  position:relative;
/*  overflow:scroll; */
  text-rendering:geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
/*Generic*/
#contentWrapper a:link,#contentWrapper a:visited{
  text-decoration:none;
  color:#ccc;
}
#contentWrapper a:hover{
  color:#777;
}
#contentWrapper a.hastip{
  width:auto;
  height:auto;
  cursor:pointer;
}
#contentWrapper a.disabled:link,
#contentWrapper a.disabled:visited,
#contentWrapper a.disabled:hover,#contentWrapper a.disabled i{
  color:#eee !important;
  text-shadow:none !important;
  cursor:default !important;
}
#contentWrapper a.hastip{
  width:auto;
  height:auto;
}
#contentWrapper a.disabled:link,
#contentWrapper a.disabled:visited,
#contentWrapper a.disabled:hover,#contentWrapper a.disabled i{
  color:#eee !important;
  text-shadow:none !important;
  cursor:default !important;
}
#contentWrapper a.action, #contentWrapper button.action{
  background: #f7f7f7;
  -pie-background: #f7f7f7;
  border:1px solid #e1e1e1;
  border-radius:5px;
  color:#333;
  font-size:14px;
  text-shadow:0 -1px 0 #fff;
  box-shadow:0 0 5px #dfdfdf,0 1px 0 #fff inset;
  line-height:normal;
  display: inline-block;
  margin-bottom:18px;
}
#contentWrapper a.action:hover, #contentWrapper button.action:hover:not('.error'){
  box-shadow:0 1px 3px #999,0 1px 0 #fff inset;
  background: #ececec;
}
#contentWrapper a.action:active, #contentWrapper button.action:active{
  box-shadow: 0 1px 3px #444 inset;
}
#contentWrapper a.action.danger, #contentWrapper button.action.danger{
  color:#fff;
  text-shadow:0 -1px 0 #5d0000;
  border-color:#b71212;
  background: #d80100;
  box-shadow:0 0 5px #dfdfdf;
}
#contentWrapper a.action.danger:hover, #contentWrapper button.action.danger:hover{
  box-shadow:0 1px 3px #666;
  background:#ee0100;
}
#contentWrapper a.action.danger:active, #contentWrapper button.action.danger:active{
  box-shadow:0 1px 3px #444 inset;
}
#contentWrapper a.action.dark, #contentWrapper button.action.dark{
  color:#fff;
  text-shadow:0 -1px 0 #575757;
  border-color:#3d3d3d;
  background: #414141;
  box-shadow:0 1px 3px #666;
}
#contentWrapper a.action.dark:hover, #contentWrapper button.action.dark:hover{
  box-shadow:0 1px 5px #111;
  background:#515151;
}
#contentWrapper a.action.dark:active, #contentWrapper button.action.dark:active{
  box-shadow:0 1px 7px #000 inset;
}
#contentWrapper button.action.sec_button, #contentWrapper a.action.sec_button{
  text-align: center;
  white-space: nowrap;
  font-size-adjust: 0.52;
  text-transform: uppercase;
  font-size:11px;
  font-weight:normal;
  border: none;
  background: transparent;
  padding:0.3em 1px;
  margin-bottom:0;
  box-shadow:none;
  color:#888;
}
#contentWrapper button.action.sec_button i, #contentWrapper a.action.sec_button i{
  font-size:26px;
  display:inline-block;
  vertical-align:middle;
  margin-top:1px;
  margin-right:0.1em;
  color:#333;
}
#contentWrapper button.action.sec_button:hover, #contentWrapper a.action.sec_button:hover,
#contentWrapper button.action.sec_button:active, #contentWrapper a.action.sec_button:active{
  color: #333;
  box-shadow:none;
}

#contentWrapper a.action.full_width,#contentWrapper button.action.full_width{
  display:block;
  width: 100%;
}
#contentWrapper a.action.float-right,#contentWrapper button.action.float-right{
  float:right;
}
#contentWrapper button:disabled{
    opacity:0.5;
}
#contentWrapper a.action.hashelptext, #contentWrapper button.hashelptext{
  margin-bottom:4px !important;
}
h1{
  color:#333;
  font-size:22px;
  margin: 0 0 9px;
  line-height:36px;
  font-weight:bold;
}
h1 i{
  font-size:30px;
  vertical-align:top;
  display:inline;
}
hr{
  margin:15px 0;
  border: none 0;
  border-top: 1px solid #333;
  height: 1px;
  clear:both;
  display:block;
  float:none;
}
.pretty_rounded_box{
  background:#f7f7f7;
  border:1px solid #e1e1e1;
  border-radius:5px;
  box-shadow:0 0 5px #dfdfdf,0 1px 0 #fff inset;
  display:block;
  margin-bottom:10px;
}
.pretty_rounded_box.dark{
  background:#ebebeb;
  border:1px solid #999;
  box-shadow:0 1px 5px #bbb,0 1px 0 #fff inset;
}
.pretty_rounded_box.noshadow{
  box-shadow:0 1px 0 #fff inset;
}
/*END Generic*/
#contentWrapper #presHeader{
  position:relative;
  height:75px;
}
#contentWrapper #presHeader #presPageControls{
  position:absolute;
  top:10px;
  right:0;
}
#contentWrapper #presHeader #presPageControls a{
  font-size:22px;
  margin:0;
  text-shadow:0 -1px 0 #999;
  font-weight:5 !important;
  font-style:normal !important;
}
#contentWrapper #presHeader #presPageControls i{
  width:1em;
}
#contentWrapper #presContent{
  min-height:531px;
  position:absolute;
  top:40px;left:0;right:0;bottom:0;
  padding:0 2.1%;
}
#contentWrapper #presViewer{
  height:100%;
}

/*The Left Hand Pane*/
#presLeftPane #thumbsHolderGrid{
  position:absolute;
  top:0;left:0;
  bottom:76px;
  width:100%;
  min-width:600px;
  min-height:453px;
  overflow:hidden;
  opacity:0;
  zoom:1;
  -webkit-transform:translate(-100%,0);
  -moz-transform:translate(-100%,0);
  -ms-transform:translate(-100%,0);
  -o-transform:translate(-100%,0);
  transform:translate(-100%,0);
}
.no-transition-support #presLeftPane #thumbsHolderGrid{
  display:none;
}
#presLeftPane #slide{
  width:100%;
  top:0;bottom:0;
/*  border:1px solid #d6d6d6; */
/*  box-shadow:0 2px 5px #aaa; */
  /*background:url("../images/large_preloader.gif") no-repeat center center;*/
  opacity:1;
  position:absolute;
}
#presLeftPane #slide,#presLeftPane #thumbsHolderGrid{
  -webkit-transition:-webkit-transform 0.5s,opacity 0.5s,width 0.5s,height 0.5s;
  -moz-transition:-moz-transform 0.5s,opacity 0.5s,width 0.5s,height 0.5s;
  -ms-transition:-ms-transform 0.5s,opacity 0.5s,width 0.5s,height 0.5s;
  -o-transition:-o-transform 0.5s,opacity 0.5s,width 0.5s,height 0.5s;
  transition:transform 0.5s,opacity 0.5s,width 0.5s,height 0.5s;
}

#presLeftPane #slideControls{
  padding:25px 0;
  position:absolute;
  bottom:0;
  width:100%;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#presLeftPane #slideControls .left{
  float:left;
}
#presLeftPane #slideControls .center{
  display:block;
  float:right;
  left:-50%;
  position:relative;
}
#presLeftPane #slideControls .center ul{
  position:relative;
  left:50%;
}
#presLeftPane #slideControls .right{
  position:absolute;
  right:0;
}

#presLeftPane #slideControls li{
  font-size:16px;
  line-height:5px;
  text-shadow:0 -1px 0 #999;
  color:#ccc;
  vertical-align:bottom;
  display:inline-block;
  position:relative;
  -webkit-transition:-webkit-transform 0.3s,opacity 0.3s;
  -moz-transition:-moz-transform 0.3s,opacity 0.3s;
  -ms-transition:-ms-transform 0.3s,opacity 0.3s;
  -o-transition:-o-transform 0.3s,opacity 0.3s;
  transition:transform 0.3s,opacity 0.3s;
}
#presLeftPane #slideControls li a{
  font-size:29px;
  vertical-align:bottom;
  display:inline-block;
}
#presLeftPane #slideControls .right li{
  margin-left:3px;
}
#presLeftPane #slideControls li.pagination div.inputter{
  position:absolute;
  top:-8px;left:0;
  display:none;
}
#presLeftPane #slideControls li.pagination div.inputter input{
  width:90%;
  text-align:center;
}

/*The Thumbnails Slider*/
#presThumbnails{
  position:absolute;
  bottom:0;left:0;
  width:100%;
  background:#eee;
  border:1px solid #e1e1e1;
  border-radius:0 0 10px 10px;
  box-shadow:0 0 5px #dfdfdf,0 1px 0 #fff inset;
  max-height:14px;
  -webkit-transition:max-height 0.3s,-webkit-transform 0.3s,opacity 0.3s;
  -moz-transition:max-height 0.3s,-moz-transform 0.3s,opacity 0.3s;
  -ms-transition:max-height 0.3s,-ms-transform 0.3s,opacity 0.3s;
  -o-transition:max-height 0.3s,-o-transform 0.3s,opacity 0.3s;
  transition:max-height 0.3s,transform 0.3s,opacity 0.3s;
}
#presThumbnails.hidden{
  opacity:0;
  -webkit-transform:translate(0,300%);
  -moz-transform:translate(0,300%);
  -ms-transform:translate(0,300%);
  -o-transform:translate(0,300%);
  transform:translate(0,300%);
}
.no-transition-support #presThumbnails.hidden{
  display:none;
}
#presThumbnails.open{
  max-height:150px;
}
#presThumbInner{
  position:relative;
  width:100%;
}
#presThumbHandle{
  background:url("../images/thumb_handle.png");
  width:65px;
  height:18px;
  margin:0 auto;
  display:block;
  margin-top: -12px;
}
#thumbsHolderStrip{
  height:120px;
  padding:10px 5px;
}
#thumbsHolderStrip a:link, #thumbsHolderStrip a:visited{
  color:#333;
  text-shadow:0 -1px 0 #777;
  font-size:18px;
}
#thumbsHolderStrip a:hover{
  color:#ccc;
}
#thumbRightControls{
  float:right;
  padding-top:35px;
}
#thumbLeftControls{
  float:left;
  padding-top:35px;
}
#thumbs{
  position:absolute;
  left:42px;right:42px;
  height:120px;
  overflow:auto;
  padding-top:8px;
}
#thumbs ul{
  height:100px;
  overflow:hidden;
}
#thumbs li{
  width:87px;
  float:left;
  display:inline-block;
  margin:0 10px;
  cursor:pointer;
  position:relative;
}
#thumbs li span.caption{
  display:block;
  font-weight:bold;
  text-align:center;
  line-height:24px;
  color:#ccc;
  text-shadow:0 -1px 0 #aaa;
}
#thumbs li div.thumbnail{
  position:relative;
  border:1px solid #fdfdfd;
  box-shadow:0 0 5px #aaa;
  width:85px;
  height:65px;
}
#thumbs li div.processing,#thumbs li div.error{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#fff;
}
#thumbs li div.processing .comp-progressbar{
  width:85%;
  margin-top:25px;
}
#thumbs li div.processing .comp-progressbar span.pbcaption{
  font-size:9px;
}
#thumbs li div.error span{
  color:red;
  font-weight:bold;
  text-align:center;
  font-size:11px;
  line-height:15px;
  text-shadow:none;
  display:block;
}
#thumbs li div.attachment{
  position: absolute;
  top: 3px;
  right: 3px;
  background: #999;
  padding: 2px 2px 0 2px;
  border-radius: 3px;
  box-shadow: 0 0 5px #666;
  display: none;
}
#thumbs li div.attachment i{
  color: white;
  font-size: 17px;
  text-shadow: 0 -1px 0 #666;
  display:none;
}
#thumbs li div.attachment.a,#thumbs li div.attachment.v,
#thumbs li div.attachment.a i.icon-volume-up,
#thumbs li div.attachment.v i.icon-user{
  display:block;
}
/*Thumbnail states*/
#thumbs li div.processing,#thumbs li div.error{
  display:none;
}
#thumbs li.e div.thumbnail img, #thumbs li.p div.thumbnail img{
  display:none;
}
#thumbs li.p div.processing{
  display:block;
}
#thumbs li.e div.error{
  display:block;
}
/*End Thumbnail states*/
#thumbs li.active div.thumbnail{
  border-color:#444 !important;
}
#thumbs li.active span.caption{
  color:#444 !important;
  text-shadow:none !important;
}
/*For when the #thumbs is in gridView mode*/
#presLeftPane #thumbsHolderGrid #thumbs{
  width:100% !important;
  height:100% !important;
  min-height:453px;
  overflow:auto !important;
  overflow-x:hidden !important;
  padding-top:0px !important;
  margin:0 !important;
  position:relative !important;
  left:auto !important;
  right:auto !important;
}
#presLeftPane #thumbsHolderGrid #thumbs ul{
  width:100% !important;
  height:auto !important;
}
#presLeftPane #thumbsHolderGrid #thumbs li{
  width:102px;
  margin:0 7px;
}
#presLeftPane #thumbsHolderGrid #thumbs li span.caption{
  color:#ddd;
  text-shadow:0 -1px 0 #999;
}
#presLeftPane #thumbsHolderGrid #thumbs li div.thumbnail{
  width:100px;
  height:76px;
  box-shadow:none;
  border-color:#dcdcdc;
}
#allowTip {
  font-size: 13px;
  display:none;
  color: #666;
  text-align: center;
  font-weight: bold;
  position:absolute;
  right:0;
  top: 53px;
}
#allowTip i.arrow{
  position:absolute;
  top:-30px;
  right:220px;
  font-size:30px;
}

/* EasyShare stuff */
.takeTrainingForm{
    padding: 30px 300px;
    background-color: #fdfdfd;
}
.takeTrainingForm form{
    width: 330px;
    margin: 0 auto;
}
.easyshare-login-window{
    height: 100%;
    background-color: #fdfdfd;
}

a.easyshare-logo {
    background-image: url('../images/easyshare_logo_small.png') !important;
    background-repeat: no-repeat !important;
    position: absolute;
    right: 2%;
    bottom: 2%;
    display: block;
    width: 112px;
    height: 30px;
    text-decoration: none;
    z-index: 7;
}

.terms-links {
    position: absolute;
    left: 2%;
    bottom: 2%;
    display: block;
    font-size:13px !important;
}
.terms-links .link-separator {
    color: #ccc;
    display:inline !important;
}
.terms-links a:link, .terms-links a:visited{
  color:#ccc !important;
  text-decoration:none !important;
  font-size:13px !important;
}
.terms-links a:hover{
  color:#777 !important;
}

/* For some reason when a validation error is triggered the red border is slightly outside the visible area without this: */
#contentWrapper.easyshare-login-window #presHeader{
  height:40px;
}
#contentWrapper.easyshare-login-window #presHeader h1{
  padding-top: 5px;
  line-height: 30px;
  margin-bottom: 0;
  white-space: nowrap;
  width: 84%;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: normal;
  font-size:24px;
}
.easyshare-login-window .control-group.error .mini div.checker span {
    background-position: -318px -250px;
}

#contentWrapper.easyshare-login-window .action{
  text-transform:uppercase;
  font-weight: normal;
  font-size: 18px;
  padding: 0.4em 1.9em;
  text-shadow: none !important;
}
.takeTrainingForm{
    border: none;
}
.takeTrainingForm .error_message{
    color: #D80000;
}
.takeTrainingForm .success_message{
    color: #008d01;
}
.takeTrainingForm h3{
  font-size:19px;
  line-height:23px;
}
.takeTrainingForm p{
  color:#666;
}
#contentWrapper .takeTrainingForm a:link, .takeTrainingForm a:visited{
  color:#666;
  text-decoration:underline;
}
#contentWrapper .takeTrainingForm a:hover{
  color:#333;
}

#contentWrapper button.helpBelow {
    margin-bottom: 2px;
}

#contentWrapper .helpCentered {
    text-align: center;
}

.redlink{
  color: #d80100 !important;
}

#terms_overlay {
    position: absolute;
    z-index: 197;
    background: #FFF;
    padding: 0 2% 10px 2%;
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#terms_overlay .content_frame {
    width: 100%;
    height: 86%;
    border: none;
    margin: 0;
}

#terms_overlay a.closeOverlay {
    float: right;
    font-size: 22px;
    font-style: normal !important;
    color: #CCC;
    text-shadow: 0 -1px 0 #999;
    margin: 6px 0;
}

@media (max-width: 767px) {
  #contentWrapper #presContent{
    min-height:auto;
    bottom: 20px;
  }
}