

#box {
  float: left;
  width: 46%;
  border-style: solid;
  border-color: black;
  border-width: 1px;
  font-family: ariel;
  padding: 5px;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-top: 20px;
  font-family: helvetica, arial, sans-serif;  font-weight: lighter;
  background-color: lightgrey;
    /***  CSS Rounded Corners  ***/
  border-bottom-left-radius:10px;
  -webkit-border-bottom-left-radius:10px;
  -moz-border-radius-bottomleft:10px;
  border-bottom-right-radius:10px;
  -webkit-border-bottom-right-radius:10px;
  -moz-border-radius-bottomright:10px;
  
    /***  CSS Box Shadow  ***/
  box-shadow: 5px 5px 8px 0px rgba(192, 192, 192, 1.000) ;
  -webkit-box-shadow: 5px 5px 8px 0px rgba(192, 192, 192, 1.000) ;
  -moz-box-shadow: 5px 5px 8px 0px rgba(192, 192, 192, 1.000) ;
}

#boxtitle {
  background-color: blue; 
  margin: -5px;
  margin-bottom: 5px;
  padding: 5px;
  font-size: 20px;
  color: white;
  font-family: helvetica, arial, sans-serif;  font-weight: bolder;
    /***  CSS Gradient  ***/
  /*  Chrome 1-9 and Safari 4-5.0  */
  background-image: -webkit-gradient(linear, left top, left bottom,
        color-stop( 0.0, rgb(160, 179, 231) ),
        color-stop( 1.0, rgb(10, 85, 171) ));

  /*  Chrome 10+ Safari 5.1+ Mobile Safari  */
  background-image: -webkit-linear-gradient(top,
        rgb(160, 179, 231), 
        rgb(10, 85, 171) );

  /*  Firefox 3.6+  */
  background-image: -moz-linear-gradient(top,
        rgb(160, 179, 231), 
        rgb(10, 85, 171) );

  /*  IE 10+  */
  background-image: -ms-linear-gradient(top,
        rgb(160, 179, 231), 
        rgb(10, 85, 171) );

  /*  Opera 11.10+  */
  background-image: -o-linear-gradient(top,
        rgb(160, 179, 231), 
        rgb(10, 85, 171) );

  /*  W3C  */
  background-image: linear-gradient(top,
        rgb(160, 179, 231), 
        rgb(10, 85, 171) );

}

#boxwrapper {
  width: 900px;
  float: left;
} 