/* Copyright 2010 Google, Inc. All Rights Reserved */

#top .button-css {
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

#top .button-grey {
background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.3, rgb(224,224,224)),
    color-stop(0.65, rgb(238,238,238))
  );
background: -moz-linear-gradient(
    center bottom,
    rgb(224,224,224) 30%,
    rgb(238,238,238) 65%
  );
text-shadow: 0 1px 0 #fff;
-moz-text-shadow: 0 1px 0 #fff;
-webkit-text-shadow: 0 1px 0 #fff;
}

#top .button-blue {
background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.28, rgb(0,102,204)),
    color-stop(0.64, rgb(10,115,220))
);
}

#top .button-disabled {color:#fff;  background: #66bbff;  border:1px solid #66bbcc; border-bottom:1px solid #306191;}

background: -moz-linear-gradient(
    center bottom,
    rgb(0,102,204) 28%,
    rgb(10,115,220) 64%
);
text-shadow: 0 1px 0 #0052a3;
-moz-text-shadow: 0 1px 0 #0052a3;
-webkit-text-shadow: 0 1px 0 #0052a3;
}

.modal_window{
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-moz-box-shadow: 0 0 5px #000;
-webkit-box-shadow: 0 0 5px #000;
box-shadow: 0 0 5px #000;
}

.modal_window .specs{
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
}

.modal_window p.closeIt {
border-radius: 7px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border:1px solid #fff;
border-top:1px solid #ccc;
}