@charset "utf-8";
/* CSS Document */

#skin_switcher{display:block;width:230px;padding-left:20px;height:auto;z-index:99;position:absolute;top:200px;left:-250px;}
#skin_switcher span{position:relative;}
a.skin_switcher_toggle {
display:block;
width:45px;
height:200px;
background:url('./calc.png') no-repeat;
position:absolute;
left:230px;
z-index:99;
}
a.skin_switcher_toggle:hover  {
background-position: 0 -190px;
}
#skin_switcher div {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
padding: 15px;
background-color: white;
height: auto;
-moz-box-shadow: 0 0 8px #111;
-webkit-box-shadow: 0 0 8px #111;
box-shadow: 0 0 8px #111;
width: 200px;
}
#skin_switcher select {border:1px solid #999;width:200px;}

#button2 {
  font-size: 11px;
  background: #CF4114;
  color: white;
  border: 2px solid #eee;
  height: 25px;
  width: 75px;
  margin: 20px 0 0 0px;
  overflow: hidden;
  display: block;
  text-align: center;
  line-height: 25px;
  
  /*Transition*/
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  -ms-transition: All 0.5s ease;
  transition: All 0.5s ease;
  
  /*Rounded Corners*/
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  
  /*Gradient*/
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  
  /*Shadow*/
  -webkit-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
}
#button2:hover {
  background-color: #AE330C;
}