body { font-family:'Play', Verdana, sans-serif; /*background: url('images/cream_dust.png');*/ }
h1, h2, h3, h4, h5, h6 { font-weight:normal; }
h2 { margin-top:0; line-height:1em; text-align:right; }
.row { margin-top: 30px; }
ul.menu { list-style:none; margin:0; margin-left: 140px; margin-top: -15px; border-top: 1px solid black; margin-right: 140px; }
ul.menu li { float:right; line-height: 30px; }
ul.menu li a { background:#111; padding:.25em .5em; color:white; margin-left:10px; margin-top:20px; }
ul.menu li a:hover { text-decoration:none; background:red; }

img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -webkit-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
        -moz-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
         -ms-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
             -o-transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
          transition: all 300ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}
img:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
}


hr { border-top:1px solid black; border-bottom: none; }
hr.header-breaker { margin-top: 10px; padding-bottom:80px; }