div {
    width: 100%;
      height: 50px;
      background: #946D7A;
      text-align: center;
      color: white;
      font-family: 'times new roman', times, serif;
    font-size: 23px;
    font-style: italic;
    letter-spacing: 0.8pt;
    word-spacing: 1.8pt;
    box-shadow: 2px 3px 4px 0px rgba(119, 119, 119, 0.35);
    -moz-box-shadow: 2px 3px 4px 0px rgba(119, 119, 119, 0.35);
    -webkit-box-shadow: 2px 3px 4px 0px rgba(119, 119, 119, 0.35);
}

span {
  display: inline-block;
      margin-top: 10px;
}

body {
    background-image: url(http://stylegerms.com/wp-content/uploads/2013/06/wallpaper-abstract-patterns-designs-rahul-pattern-shirt-design-85303.png);
    margin:0;
    padding:0;
}

#calculator {
    width: 310px;
    height: 350px;
    margin: 90px auto;
    text-align:center;
    border-radius: 15px;
    /* add gradient to calculator */
    background-image: linear-gradient(bottom, rgb(89,56,88) 0%, rgb(176,118,139) 67%);
        background-image: -o-linear-gradient(bottom, rgb(89,56,88) 0%, rgb(176,118,139) 67%);
        background-image: -moz-linear-gradient(bottom, rgb(89,56,88) 0%, rgb(176,118,139) 67%);
        background-image: -webkit-linear-gradient(bottom, rgb(89,56,88) 0%, rgb(176,118,139) 67%);
        background-image: -ms-linear-gradient(bottom, rgb(89,56,88) 0%, rgb(176,118,139) 67%);
        background-image: -webkit-gradient(
        	linear,
        	left bottom,
        	left top,
        	color-stop(0, rgb(89,56,88)),
        	color-stop(0.67, rgb(176,118,139));
)  
    
}

form {
    border: 3px solid white;
    box-shadow: 0 9px 10px rgba(0, 0, 0, 0.7);
    
    
    
    
}


#total {
    height: 70px;
    width: 88%;
    margin: 0 auto;
    margin-left: 3px;
    margin-top: 10px;
    background-color:white;
    margin-bottom: 5px;
    text-align: right;
    font-family:serif;
    font-size: 60px;
    padding: 5px 5px;
    border-color: white;
    border-radius: 8px;
}

.innershadow{
    box-shadow: inset 0px 3px 3px 0px rgba(119, 119, 119, 0.45);
    -moz-box-shadow: inset 0px 3px 3px 0px rgba(119, 119, 119, 0.45);
    -webkit-box-shadow: inset 0px 3px 3px 0px rgba(119, 119, 119, 0.45);
}

#numbers {
    text-decoration: none;
    width:  50px;
    height: 50px;
    font-size: 30px;
    font-family:serif;
    padding: 5px;
    margin: 5px 12px;
 }
 
.blurbutton {
	-moz-box-shadow:inset 0px 4px 13px 0px #ffffff;
	-webkit-box-shadow:inset 0px 4px 13px 0px #ffffff;
	box-shadow:inset 0px 4px 13px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	background-color:#ededed;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#525252;
	font-family:Verdana;
	font-size:23px;
	font-weight:normal;
	padding:20px 20px;
	text-decoration:none;
	text-shadow:0px -2px 3px #ffffff;
        
        box-shadow: 2px 3px 4px 0px rgba(119, 119, 119, 0.35);
        -moz-box-shadow: 2px 3px 4px 0px rgba(119, 119, 119, 0.35);
        -webkit-box-shadow: 2px 3px 4px 0px rgba(119, 119, 119, 0.35);
        
}.blurbutton:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;

}.blurbutton:active {
	position:relative;
	top:1px;
}


