body {

  /* Location of the image */

  background-image: url(http://businessemaillists.com/images/skyline-blue-smaller-min.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:#37B3D5;

  

  /* 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/images/skyline-blue-smaller-min.jpg);

  }

	}

	

p{



  font-family: 'Lato', Arial, serif; font-weight: 400; 



}



.radius{

-webkit-border-radius: 5px;

-moz-border-radius: 5px;

border-radius: 5px;



-webkit-box-shadow: 0px 1px 0px rgba(0,0,0,0.25);

-moz-box-shadow: 0px 1px 0px rgba(0,0,0,0.25);

box-shadow: 0px 1px 0px rgba(0,0,0,0.25);



}





.button {

margin:0px auto;

  max-width:130px;

	background: #f26b5c;

	padding: 8px 10px 8px 10px!important;

	-webkit-border-radius: 3px;

	border-radius: 3px;

	font-size: 14px;

	font-weight: 600;

	line-height: 1em;

	border: 1px solid #ec2b15;

	color: #fefefe;

        text-align:center;

 }





.button:hover{

background:#fc9488;

}



.button a:link,.button a:visited{

color:#fefefe;

text-decoration:none;

}



.button a:hover{

text-decoration:none!important;

border:none;

}



.topheader{

background:#242323;

border-bottom:1px solid #000;

padding:10px 0px 14px 0px;



-webkit-box-shadow: 0px 10px 0px rgba(0,0,0,0.25);

-moz-box-shadow: 0px 10px 0px rgba(0,0,0,0.25);

box-shadow: 0px 10px 0px rgba(0,0,0,0.25);



}



.logo{

float:left;

}

.header-menu ul{

margin:0;

padding:0;

margin-top:10px;

font-size:0.9em;

float:right;

}



.header-menu ul li{

margin:0;

padding:0;

margin-right:15px;

float:left;

}



.header-menu ul li a:link{

color:#fff;

text-decoration:none;

}







.sticky-footer{

position:absolute;

bottom:0;

width:100%;

border-top:1px solid #000;

background:#242323;

}



.copyright{

font-size:0.9em;

color:#fff;

}