html, body, iframe {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  margin: 0;
  cursor: default;
}

iframe {
  display: block;
  width: 100%;
  border: none;
}

html {
  display: block;
}

body {
  background-color: #eeeeee;
}

p {
  color: #FFF;
  text-align: center;
  width: 200px;
  white-space: nowrap;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1px;
  background-color: #303030;
}

img {
  margin: 1px;
}

fieldset {
  border: 1px solid #ddd;
  background: #fff;
  padding: 0;
  -webkit-border-radius: 0.4em;
  -moz-border-radius: 0.4em;
  -ms-border-radius: 0.4em;
  -o-border-radius: 0.4em;
  border-radius: 0.4em;
}

/* appLoadingIndicator*/
#appLoadingIndicator {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  text-align: center;
  width: 100%;
  height: 30px;
  -webkit-animation-name: appLoadingIndicator;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
}

#appLoadingIndicator > * {
  background-color: #000;
  display: inline-block;
  height: 30px;
  -webkit-border-radius: 15px;
  margin: 0 5px;
  width: 30px;
  opacity: 0.8;
}

@-webkit-keyframes appLoadingIndicator{
  0% {
    opacity: 0.8
  }
  50% {
    opacity: 0
  }
  100% {
    opacity: 0.8
  }
}

/* LOGIN */
.log {
  display: none;
}

.log_form {
  position: absolute;
  display: inline-block;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -150px;
}

.log_title {
  text-shadow: #fff 0 1px 1px;
  margin: 1em 0.7em 0.3em;
  color: #333;
  font-weight: bold;
  font-size: 114%;
  text-align: center;
}

.log_field {
  border-bottom: 1px solid #ddd;
  background: transparent;
  min-height: 2.5em;
  border-top-left-radius: 0.4em;
  border-top-right-radius: 0.4em;
  -webkit-box-orient: horizontal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  display: -webkit-box;
  
}

.log_lbl {
  width: 40% !important;
  display: block !important;
  border-top: 1px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  text-shadow: rgba(255,255,255,0.25) 0 0.08em 0;
  padding: 0.6em;
  background-color: #f7f7f7;
}

.log_input {
  width: 100%;
  padding: .4em;
  min-height: 2.5em;
  border-width: 0;
  -webkit-appearance: none;
  display: block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background-color: white;
  font: -webkit-small-control;
  color: initial;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: start;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0px;
}

.log_inst {
  text-shadow: #fff 0 1px 1px;
  color: gray;
  margin: 1em 0.7em 0.3em;
  font-size: .8em;
  text-align: center;
}

/* APP */

.main {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 45px;
  display: none;
  overflow-y: auto;
}

.topbar {
  width: 100%;
  height: 40px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #0e0e0e),
    color-stop(1, #000)
  );
  background-image: -o-linear-gradient(bottom, #0e0e0e 0%, #000 100%);
  background-image: -moz-linear-gradient(bottom, #0e0e0e 0%, #000 100%);
  background-image: -webkit-linear-gradient(bottom, #0e0e0e 0%, #000 100%);
  background-image: -ms-linear-gradient(bottom, #0e0e0e 0%, #000 100%);
  background-image: linear-gradient(to bottom, #0e0e0e 0%, #000 100%);
  position: fixed;
  margin-top: -40px;
  margin-left: 0px;
  
}

.img_logo {
  color: #FFF;
  text-align: center;
  font-family: HelveticaNeue-UltraLight,sans-serif;
  width: auto;
  height: 40px;
  line-height: 40px;
  font-size: large;
  font-weight: 600;
}

.top_bar_btn {
  display: inline-block;
  float: left;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
  background-color: transparent;
  border: none;
  height: 40px;
  width: 40px;
}

.refresh {
  background-image: url('../img/refresh.png');
  margin-left: 20px;
}

.date {
  background-image: url('../img/calendar.png');
}

.search {
  background-image: url('../img/search.png');
  float: right;
}

.sync {
  background-image: url('../img/broadcast.png');
  float: right;
  margin-right: 20px;
}

.gosch {
  background-image: url('../img/gosearch.png');
  float: right;
}

.sup {
  background-image: url('../img/mail.png');
}

.menu {
  background-image: url('../img/list.png');
  display: none;
}

.mnuPpal {
  display: none;
  position: absolute;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border: 4px solid #165387;
  background-color: #000;
  z-index: 1000;
}

.channel {
}

.title {
  width: auto;
  height: 40px;
  color: #000;
  line-height: 40px;
  font-size: large;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  font-weight: bold;
  padding-left: 20px;
}

.container {
  width: auto;
  height: 200px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  float: right;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  background-color: transparent;
  border: none;
  height: 30px;
  width: 40px; 
}

.bclose {
  float: left;
  background-position: left center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #A4312F),
    color-stop(1, #6D191B)
  );
  background: -o-linear-gradient(bottom, #A4312F 0%, #6D191B 100%);
  background: -moz-linear-gradient(bottom, #A4312F 0%, #6D191B 100%);
  background: -webkit-linear-gradient(bottom, #A4312F 0%, #6D191B 100%);
  background: -ms-linear-gradient(bottom, #A4312F 0%, #6D191B 100%);
  background: linear-gradient(to bottom, #A4312F 0%, #6D191B 100%);
  width: 80px;
  height: 20px;
  margin-top: 10px;
  margin-right: 20px;
  font-weight: bold;
  color: #FFF;
}

.bscalet {
  float: left;
  width: 80px;
  height: 20px;
  margin-top: 10px;
  margin-right: 20px;
  font-weight: bold;
  color: #FFF;
  background-position: left center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #32556D),
    color-stop(1, #163C51)
  );
  background: -o-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -moz-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -webkit-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -ms-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: linear-gradient(to bottom, #32556D 0%, #163C51 100%);
  
}

.bgosearch {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px !important;
  width: 95px !important;
  margin: 0 !important;
}

.btrash {
  background-image: url('../img/trash.png');
  float: left;
}

.chl {
  height: 220px;
}

.imgWrp {
  display: inline-block;
}

.modal {
  display:    none;
  position:   absolute;
  z-index:    500;
  left:       0;
  width:      100%;
  background: rgba( 224, 224, 224, .5 ) 
              url('../img/loader.gif') 
              50% 50% 
              no-repeat;
}

.mlt {
  top: 50px;
  height: 200px;
}

.mtv {
  top: 240px;
  height: 220px;
}

.mrd {
  top: 460px;
  height: 220px;
}

.mglb {
  position: fixed;
  top: 0;
  height: 100%;
}

.search_field {
  display: none;
  position: absolute;
  z-index: 1000;
  top: 40px;
  right: 20px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border: 3px solid #ddd;
  background-color: #FFF;
  height: 40px;
  width: 200px;
  line-height: 40px;
  font-size: larger;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
}

.filter_media {
 display: none;
 position: absolute;
 width: 260px;
 height: 120px;
 margin-left: 60px;
 -moz-border-radius: 15px;
 -webkit-border-radius: 15px;
 border: 4px solid #165387;
 background-color: #000;
 z-index: 1000;
}

.filter_img {
  float: left;
  height: 120px;
  padding-left: 5px;
  padding-right: 2px;
}

.media_cntr {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba( 224, 224, 224, .95 );
}

.media_player {
  margin-top: 10px;
  height: 70%;
  width: 99%;
}

.player {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tplayer {
  width: auto;
  background-color: #EEEEEE;
  color: #000;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  font-weight: bold;
  white-space: pre-line; 
  white-space: -pre-wrap; 
  white-space: -o-pre-wrap; 
  white-space: -moz-pre-wrap; 
  word-wrap: break-word; 
}

.player-btn {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  width: 100%;
  margin-top: 15px;
  bottom: 0px;
}

.ply {
  float: left;
  height: 30px;
  width: 70px;
  font-weight: bold;
  color: #FFF;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #32556D),
    color-stop(1, #163C51)
  );
  background: -o-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -moz-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -webkit-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -ms-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: linear-gradient(to bottom, #32556D 0%, #163C51 100%);
}

.prev {
  
}

.bsend {
  
}

.next {
  
}

.dwnl {
  width: 85px; 
}

.bmp {
  width: 80px;
  height: 20px;
}

.tmp {
  background-color: #eeeeee;
  height: auto;
  line-height: 20px;
}

.setup {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 360px;
  height: 240px;
  top: 50%;
  left: 50%;
  margin-top: -120px;
  margin-left: -180px;
  background-color: #eeeeee;
}

.mail-config {
  width: 100%;
  height: 40px;
  line-height: 40px;
}

.mail-check {
  float: left;
  padding-left: 15px;
}

.mail-text {
  float: left;
  padding-left: 10px;
  font-weight: bold;
}

.mail-inst {
  line-height: 20px;
  font-size: 0.6em;
  padding-left: 80px;
  margin: 0px 0px 0px 0px;
}

.text-mail {
  width: 220px;
}

.setup-cntr-btn {
  position: absolute;
  bottom: 15px;
  right: 25px;
}

.list-cntr {
  display: none;
  position: fixed;
  z-index: 600;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba( 224, 224, 224, 1.0 );
}

.blist {
  float: left;
  background-position: left center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #32556D),
    color-stop(1, #163C51)
  );
  background: -o-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -moz-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -webkit-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -ms-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: linear-gradient(to bottom, #32556D 0%, #163C51 100%);
  width: 80px;
  height: 20px;
  margin-top: 10px;
  margin-right: 20px;
  font-weight: bold;
  color: #FFF;
}

.list-grid-hdr {
  height: 40px;
  color: #000;
  line-height: 40px;
  font-size: large;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  font-weight: bold;
  background-color: #EEEEEE;
}

.grid-hdr {
  float: left;
  width: 15%;
  text-align: center;
}

.hdr-title {
  width: 69%;
}

.list-grid-elm {
  position: absolute;
  width: 100%;
  height: 85%;
  overflow-y: scroll;
  overflow-x: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.noteWrp {
  width: 100%;
  height: auto;
  line-height: 40px;
  margin: 1px;
}

.tmeWrp {
  float: left;
  width: 14%;
  text-align: center;
  margin: 1px;
  height: 40px;
  line-height: 40px;
  color: #07386F;
  font-style: italic;
}

.durWrp {
  float: left;
  width: 14%;
  text-align: center;
  margin: 1px;
  height: 40px;
  line-height: 40px;
}

.ttlWrp {
  float: left;
  width: 69%;
  white-space: pre-line; 
  white-space: -pre-wrap; 
  white-space: -o-pre-wrap; 
  white-space: -moz-pre-wrap; 
  word-wrap: break-word; 
  margin: 1px;
  padding-left: 5px;
  height: auto;
  line-height: 40px;
}

.alert-cntr {
  display: none;
  position: fixed;
  z-index: 9000;
  width: 360px;
  height: 240px;
  top: 50%;
  left: 50%;
  margin-left: -180px;
  margin-top: -120px;
  background-color: #eee;
}

.alert-title-cntr {
  height: 40px;
}

.alert-ttl {
  float: left;
  height: 40px;
  width: 320px;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
}

.alert-btn {
  float: left;
  height: 40px;
  width: 40px;
  font-weight: bold;
  line-height: 40px;
  color: #FFF;
  border: none;
  background-color: #A4312F;
}

.mwrp {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.alert-msg {
  height: 200px;
  width: 360px;
  text-align: center;
  line-height: 40px;
  background-color: #ddd;
}

.adv-srch-cntr {
  position: fixed; 
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 600;
}

.srch-bdy-wrp {
  position: relative; 
  display: table; 
  width: 100%;
  min-height:100%;
}

.adv-srch-title {
  position: absolute;
  display: table-row;
  top: 0px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  font-weight: bold;
  background-color: #EEEEEE;
  text-align: center;
}

.adv-srch-ttl {
  float: left;
  height: 40px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
}

.srch-btn {
  position: absolute;
  top: 0px;
  right: 0px;
}

.adv-srch-grid {
  position: absolute;
  display:table-row;
  width: 100%;
  top: 40px;
  bottom: 40px;
}

.grid-srch-hdr {
  float: left;
  width: 10%;
  text-align: center;
}

.hdr-srch-title {
  width: 55%;
}

.srchTme {
  width: 10%;
}

.srchDur {
  width: 10%;
}

.srchTtl {
  width: 50%;
}

.srchDte {
  width: 11%;
  font-size: smaller;
}

.srchPrg {
  width: 11%;
  font-size: smaller;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grd-wrp {
  position: relative;
  display: table; 
  width: 100%;
  min-height:100%;
  background-color: #ddd;
}

.grid-search {
  position: absolute;
  display:table-row;
  width: 100%;
  height: 95%;
  overflow-y: scroll;
  overflow-x: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  background-color: #ccc;
}

.grid-btm-bar {
  position: absolute;
  display: table-row;
  width: 100%;
  height: 40px;
  background-color: #EEEEEE;
  border-top: 1px solid #bbb;
  bottom: 0px;
}

.btm-bar {
  width: 155px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.pagging_tool {
  
}

.filter_tool {
  
}

.action_btn {
  
}

.pgg-ctlrs {
  float: right;
  min-width: 40px;
  height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #32556D),
    color-stop(1, #163C51)
  );
  background: -o-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -moz-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -webkit-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -ms-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: linear-gradient(to bottom, #32556D 0%, #163C51 100%);
}

.back-pg {
  
}

.pg-num {
  border: 1px solid #163C51;
  background: transparent !important;
  color: black !important;
}

.next-pg {
  
}

.filter-btn {
  float: left;
  min-width: 120px;
  height: 40px;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  border: none;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #32556D),
    color-stop(1, #163C51)
  );
  background: -o-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -moz-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -webkit-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -ms-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: linear-gradient(to bottom, #32556D 0%, #163C51 100%);
}

.filter-cntr {
  display: none;
  position: fixed;
  z-index: 9000;
  width: 420px;
  height: 240px;
  top: 50%;
  left: 50%;
  margin-left: -210px;
  margin-top: -120px;
  background-color: #eee;
}

.filter-ttl {
  float: left;
  height: 40px;
  width: 380px;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
}

.filter-body {
  position: absolute;
  width: 100%;
  height: 200px;
}

.filter-body-wrp {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ddd;
}

.filter-body-fields {
  position: absolute;
  width: 100%;
  height: 160px;
  overflow-y: scroll;
  overflow-x: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.filter-field-wrp {
  min-height: 40px;
  width: 100%;
  margin-left: 5px;
  margin-right: 5px;
}

.filter-lbl {
  float: left;
  height: 40px;
  width: 100px;
  line-height: 40px;
}

.filter-value {
  float: left;
  height: 30px;
  width: 200px;
  text-align: center;
  font-weight: bold;
}

.filter-btn-media {
  float: left;
  height: 40px;
  width: 100px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  border: none;
  color: white;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #32556D),
    color-stop(1, #163C51)
  );
  background: -o-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -moz-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -webkit-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: -ms-linear-gradient(bottom, #32556D 0%, #163C51 100%);
  background: linear-gradient(to bottom, #32556D 0%, #163C51 100%);
}

.filter-btn-dte {
  float: left;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35px 35px;
  background-color: transparent;
  border: none;
  height: 40px;
  width: 40px;
  margin-top: -3px;
  margin-left: 5px;
  margin-right: 5px;
  padding-bottom: 5px;
  background-image: url('../img/calendar2.png');
}

.btn-ok {
  margin-left: 85px;
}

.btn-rst {
  
}

.filter-bottom-buton {
  position: absolute;
  width: 100%;
  height: 40px;
  background-color: #EEEEEE;
  border-top: 1px solid #bbb;
  bottom: 0px;
}

/* MAIL PANEL */
.mailPnl-cntr {
  display: none;
  position: fixed;
  z-index: 9000;
  width: 360px;
  height: 240px;
  top: 50%;
  left: 50%;
  margin-left: -180px;
  margin-top: -120px;
  background-color: #eee;
  border-radius: 7px;
}

.mail-title-cntr {
  height: 40px;
  background-color: #fff;
  color: #415161;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.mail-ttl {
  float: left;
  height: 40px;
  width: 320px;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  background-color: #efefef;
  border-top-left-radius: 7px;
}

.mail-btn {
  float: left;
  height: 40px;
  width: 40px;
  font-weight: bold;
  line-height: 40px;
  color: #FFF;
  border: none;
  background-color: #A4312F;
  border-top-right-radius: 7px;
  background-image: url("../img/close.png");
  background-size: contain;
}

.mail-cntr {
  height: 200px;
  width: 360px;
  text-align: center;
  line-height: 40px;
  color: #2c3e50;
  background-color: #ddd;
  word-wrap: break-word;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.mail-div-opt {
  height: 40px;
  width: 360px;
  line-height: 40px;
}

.mail-icn {
  float: left;
  height: 40px;
  width: 40px;
  margin-left: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/default.png");
}

.yahoo-icn {
  background-image: url("../img/yahoo.png");
}

.gmail-icn {
  background-image: url("../img/gmail.png");
}

.hotmail-icn {
  background-image: url("../img/hotmail.ico");
}

.mail-txt {
  float: left;
  height: 40px;
  width: 280px;
  line-height: 40px;
  text-align: left;
  padding-left: 20px;
}

.btn-login {
  height: 40px;    
  width: 160px;    
  background-color: #286090;    
  color: #FFFFFF;    
  border-radius: 5px;
}

@media ( max-width: 767px ) and (orientation:landscape) {
  .tmp {
    height: auto;
    line-height: 15px;
    font-size: small;
  }
  
  .media_player {
    margin-top: 5px;
    height: 50%;
  }
}

@media ( max-width: 479px ) {
  img {
    height: 88px;
  }
  
  p {
    width: 133px;
    font-size: small;
  }
  
  .topbar {
    width: 100%;
  }
  
  .container {
    height: 139px;
  }
  
  .mlt {
    top: 50px;
    height: 139px;
  }
  
  .mtv {
    top: 240px;
    height: 139px;
  }
  
  .mrd {
    top: 460px;
    height: 139px;
  }

  .title {
    height: 30px;
    line-height: 30px;
    font-size: small;
    padding-left: 10px;
  }
  
  .btn {
    height: 30px;
    width: 30px; 
  }

  .t-mob {
    height: 60px;
  }
  
  .blist {
    width: 60px;
    font-size: x-small;
    height: 20px;
    margin-top: 5px;
  }
  
  .bclose, .bscalet {
    width: 60px;
    font-size: x-small;
    height: 30px;
    margin-top: 5px;
    text-align: center;
    line-height: 30px;
  }

  .bgosearch {
    height: 40px !important;
    width: 65px !important;
    margin: 0 !important;
  }
  
  .bsend {
    width: 60px;
    height: 30px;
    
  }
  
  .bmp {
    
  }
  
  .tmp {
    height: auto;
    line-height: 15px;
  }
  
  .media_player {
    margin-top: 5px;
    height: 50%;
  }
  
  .prev {
    height: 30px;
    width: 70px; 
  }
  
  .next {
    height: 30px;
    width: 70px; 
  }

  .edit {
    height: 30px;
    width: 60px; 
  }

  .dwnl {
    height: 30px;
    width: 75px; 
  }
    
  .filter_media {
    top: 89px;
    left: 0px;
    margin-left: 10px;
  }
  
  .setup {
    width: 340px;
    margin-left: -170px;
  }
  
  .bsave {
    height: 30px;
    width: 70px; 
  }
  
  .list-grid-hdr {
    height: 30px;
    line-height: 30px;
    font-size: small;
  }
  
  .noteWrp {
    font-size: small;
  }
  
  .hdr-title {
    width: 65%;
  }
  
  .ttlWrp {
    width: 65%;
  }
  
  .alert-cntr {
    width: 300px;
    height: 200px;
    margin-left: -150px;
    margin-top: -100px;
  }
  
  .alert-ttl {
    width: 260px;
  }
  
  .alert-msg {
    height: 160px;
    width: 300px;
  }

  .filter-cntr {
    width: 300px;
    height: 400px;
    margin-left: -150px;
    margin-top: -200px;
  }
  
  .filter-body {
    height: 360px;
  }
  
  .filter-ttl {
    width: 260px;
  }
  
  .filter-body-fields {
    height: 360px;
  }
  
  .hdr-dte {
    display: none;
  }
  
  .hdr-not {
    display: none;
  }
  
  .srchTme {
    width: 15%;
  }
  
  .srchDur {
    width: 15%;
  }
  
  .srchDte {
    display: none;
  }
  
  .srchPrg {
    display: none;
  }
  
  .srchTtl {
    width: 65%;
  }
  
  .btn-ok {
    margin-left: 25px;
  }
}

@media ( max-width: 319px) {
  
}