/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }
#page-wrap { width: 1000px; margin: 0px auto; }
p { margin: 0 0 10px 0; }

.rounded { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }

.widget { width: 260px; padding: 20px; border: 1px solid #97ca4e; background-color:#bbdaf0;
          margin: 0 20px 20px 0; float: left; position: relative; }
          
.overlay { 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url(../images/center-background.png);
    text-align: center; 
}
           
.widget-button { 
    position: relative; margin-right:-190px;
    padding: 8px 16px; background: #20448e; border: 2px solid 97ca4e; color: white; text-decoration: none;
	-moz-box-shadow: 0 0 20px white; -webkit-box-shadow: 0 0 20px white; box-shadow: 0 0 20px white; }

.widget-button:link { text-decoration:none; }

.widget-button:hover { color: #97ca4e; text-decoration:underline; }
