/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
  background-image: url(images/background-photo.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#464646;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(images/background-photo-mobile-devices.jpg);
  }
	}
	
/* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body { 
  font: 18px/23px "Cantarell", sans-serif;
  color: #ffffff;
}

h1 {
  color: #efecec;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

/* Layout */

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 40px;
  z-index: 9999;
  position: fixed;
}

  .inner {
    position: relative;
    margin: 0 auto;
    text-align: center;
  }

.navbar a {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 2px 15px;
  text-decoration: none;
  margin-top: 5px;
}

.container {
  display: table;
  width: 100%;
}

.content {
  display: block;
  position:fixed;
  bottom:20px;
  left:50%;
  margin-left:-240px;
  padding:20px;
  text-align: center;
  width: 480px;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
  
  body h1 {
    font-size: 30px;
    line-height: 23px;
  } 
  
  .content {  
    display: inline;
	bottom:0;
	padding-left:0;
    margin:0;
	left:0;
	width:100% !important;
  }

  p {
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
  }

  html, body, .container {
    height: auto;
  }
}


.btn:hover {
	background-color: #FFFFFF;
    color: #000;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.352, 1) 0s;

}

.btn {
	border:none;
	color:#FFFFFF;
	background-color: #555555;
	min-width: 120px;
    position: relative;
    height: 40px;
	font-size:18px;
    line-height: 28x;
	display: inline-block;
	margin-top:20px;
	font-family: "Cantarell",sans-serif !important;
	margin-left:-25px;
}


.the-artist {
	color:#FFFFFF !important;
	font-size:18px !important;
	font-family: "Cantarell",sans-serif !important;
}

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

.con-playpause {
	margin-right:-15px !important;
}

.the-icon-bg {
	background-color:#000000!important;
}

#ag1 > div.slider-main > div > div > div.audioplayer-inner > div.ap-controls.scrubbar-loaded {
	margin-left:35px;
}