a img {
  border: none;
}

/* Application foundation styles */
.SermonApp {
  background-color: white;
  color: #000000;
  font-family: sans-serif;
  font-size: 12px;
  width: 610px;
  height: 510px;

}

.SermonApp .button {
  cursor: pointer;
}

/* Top-panel styles */
.SermonApp .topPanel {
  height: 40px;
}

.SermonApp .topPanel p {
  font-size: 16px;
  margin: 0px;
  padding-left: 10px;
  padding-top: 10px;
}

.SermonApp .topPanel .church {
  color: #000000;
}

/* Side panel styles */
.SermonApp .sidePanel {
  float: right;
  width: 140px;
  height: 428px;
  padding: 5px;
  border: solid 1px #D2BFA9;
  border-left: none;
}

.SermonApp .subscribeTitle, .SermonApp .filterHeader {
  color: black;
/*  font-weight: bold;*/
  padding: 5px 0;
color:#8E5F28;
text-transform:uppercase;
font-size: 11px;
}

.SermonApp .subscribeTitle:focus, .SermonApp .filterHeader:focus {
  outline: 0;
}
.SermonApp .filterHeader {
  margin-top: 20px;
}

.SermonApp .filterHeader:hover {
  cursor: pointer;
}

.SermonApp .subscribeOption {
  padding: 5px 0;
}

.SermonApp .subscribeOption a, .SermonApp .subscribeOption a:visited {
  color: #000000;
  font-family: sans-serif;
  font-size: 11px;
  text-decoration: none;
}

.SermonApp .subscribeOption * {
  vertical-align: middle;
}

.SermonApp .underScored {
  border-bottom: solid 1px #e1fcde;
}

.SermonApp .filterBody ul {
  padding: 0;
  margin: 10px 0 0 0;
}

.SermonApp .filterBody ul li {
  list-style: none;
}

.SermonApp .filterBody ul li a, .SermonApp .filterBody ul li a:visited {
  color: #000000;
  font-family: sans-serif;
  font-size: 12px;
  text-decoration: none;
}

.SermonApp .filterBody ul li a:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* Main panel/per-sermon-player styles */
.SermonApp .mainPanel {
  width: 440px;
  height: 428px;
  padding: 5px;
  border-top: solid 1px #D2BFA9;
  border-bottom: solid 1px #D2BFA9;
}

.SermonApp .sermonBox {
  height: 97px;
  padding: 5px;
  border-top: solid 1px #D2BFA9;
}

.SermonApp .sermonBox.activeSermon {
  background-color: #f7f7f7;
}

.SermonApp .sermonBox:first-child {
  border-top: none;
}

.SermonApp .sermonBox p {
  margin: 2px 0;
}

.SermonApp .sermonBox .leftHeader {
  float: left;
  height: 57px;
font-size: 13px;
}

.SermonApp .sermonBox .sermonTitle {
  width: 300px;
  white-space: nowrap;
/*  font-weight: bold;*/
  color: #C25300;
	font-size: 14px;
}

.SermonApp .sermonBox .sermonSpeaker, .SermonApp .sermonBox .sermonScripture {
  font-size: 12px;
}

.SermonApp .sermonBox .sermonDate {
  text-transform: uppercase;
  text-align: right;
	font-size: 14px;
	color: #888;
}

.SermonApp .sermonBox .sermonLinks a, .SermonApp .sermonBox .sermonLinks a:visited {
  color: #556A42;
font-size: 12px;
}

.SermonApp .sermonBox .rightHeader {
  float: right;
  height: 57px;
}

.SermonApp .sermonBox .sermonPlayer {
  clear: left;
  height: 40px;
}

.SermonApp .sermonBox .sermonPlayer .canPlay, .SermonApp .sermonBox .sermonPlayer .isPlaying {
  height: 30px;
  padding: 5px 0;
}

.SermonApp .sermonBox .sermonPlayer .canPlay .play.button {
  float: left;
}

.SermonApp .sermonBox .sermonPlayer .canPlay * {
  vertical-align: middle;
}

.SermonApp .sermonBox .sermonPlayer .canPlay .listenOnlineBlurb {
 /* font-weight: bold;*/
  color: #556A42;
  position: relative;
  top: 6px;
  left: 4px;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying, .SermonApp .sermonBox.activeSermon .sermonPlayer .canPlay {
  display: none;
}

.SermonApp .sermonBox.activeSermon .sermonPlayer .isPlaying {
  display: block;
}


.SermonApp .sermonBox .sermonPlayer .isPlaying .sermonControls {
  height: 24px;
  border: solid 1px #aaa;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying .pause.button {
  float: left;
  margin: 3px;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying .vol.button {
  float: right;
  margin: 3px;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying .sermonScrubberBox {
  float: left;
  width: 375px;
  margin: 3px;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying .sermonScrubberLine {
  width: 345px;
  height: 5px;
  margin: 6px 0;
  border: solid 1px #afafaf;
  background-color: white;
  
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying .sermonScrubberBar {
  width: 12px;
  height: 12px;
  position: relative;
  top: -15px;
  left: -2px;
  background-image: url(images/sdot.png);
  cursor: move;
}

.SermonApp .screenWrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.SermonApp .volumeBox {
  display: none;
  left: 415px;
  top: 185px;
  z-index: 1001;
  
  position: absolute;
  width: 24px;
  height: 60px;
  background-color: #f7f7f7;
  border: solid 1px #aaa;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.SermonApp .volumeBox .volumeLine {
  display: block;
  position: relative;
  width: 4px;
  height: 50px;
  margin: 4px auto;
  background-color: #ddd;
  border: solid 1px #ccc;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  z-index: 1001;
}

.SermonApp .volumeBox .volumeHandle {
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
  left: 6px;
  top: -16px;
  background-image: url(images/vdot.png);
  cursor: move;
  z-index: 1001;
}

.SermonApp .sermonBox .sermonPlayer .isPlaying .sermonTimeStamp {
  float: right;
  font-size: 9px;
  font-weight: normal;
  margin: 3px 0;
  color: #1FB64F;
  font-family: monospace;
}

/* Bottom panel style */
.SermonApp .bottomPanel {
  width: 440px;
  height: 30px;
  padding: 5px;
}

.SermonApp .bottomPanel .previousPage {
  float: left;
}

.SermonApp .bottomPanel .nextPage {
  float: right;
}

.SermonApp .bottomPanel a, .SermonApp .bottomPanel a:visited {
  color: #777;
  font-family: sans-serif;
/*  font-weight: bold;*/
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.SermonApp .bottomPanel a.inactive {
  color: #A0A0A0;
  cursor: default;
}

.SermonApp .bottomPanel .pageNumbers {
  text-align: center;
}

