html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 67px;
  margin-top: 67px;

}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  min-height: 30px;
  background-color: #004994;
}

.head2 {
  min-height: 30px;
  background-color: #E7521E;
  }

h1 {
    color: #006fb4;
    top: 0px;
	margin:0;
   }

.shadow {
    position: relative;
    width: 1000px; height: 340;
    margin: 35px auto; padding: 20px;

    -webkit-box-shadow: inset 0 3px 0 #ddd;
       -moz-box-shadow: inset 0 3px 0 #ddd;
        -ms-box-shadow: inset 0 3px 0 #ddd;
         -o-box-shadow: inset 0 3px 0 #ddd;
            box-shadow: inset 0 3px 0 #ddd;
    background: #fff;
}

.shadow:before, .shadow:after {
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%; max-width: 175px;
    top: 20px;
    -webkit-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.7);
       -moz-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.7);
        -ms-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.7);
         -o-box-shadow: 0 15px 15px rgba(0, 0, 0, 0.7);
            box-shadow: 0 15px 15px rgba(0, 0, 0, 0.7);
    -webkit-transform: rotate(-2deg);
       -moz-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
         -o-transform: rotate(-2deg);
            transform: rotate(-2deg);
    z-index: -1;
}

.shadow:after {
    -webkit-transform: rotate(2deg);
       -moz-transform: rotate(2deg);
        -ms-transform: rotate(2deg);
         -o-transform: rotate(2deg);
            transform: rotate(2deg);
    right: 10px;
    left: auto;
}