/* ============================

Core Concepts (Buyog.com 4.0 interface)
(c) 2014 Rye Corradini
Free to use with attribution

============================ */

/* customization of content styles */

.content .glass {
    margin: 0 auto;
    text-align: center;
}

/* this stuff is pretty much unique to the front page right now */

.content .glass {
    margin: 0 auto;
    text-align: center;
    padding:0; margin:0;
}

.glass a {
    width: 100%;
    line-height: 80px;
    padding: 0;
    margin: 5px auto;
    background-color: #AAC;
    border: 1px solid transparent;
    color: #0D3759;
    display: block;
    position: relative;
    max-width: 320px;

    opacity: .3;
 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";  /* IE8 */
     filter: alpha(opacity=30); /* IE 5-7  */

    z-index: 0;

    font-weight: normal;
    font-style: normal;
    font-family: 'MEgalopolisExtraRegular', sans-serif;
    text-align: center;
    text-decoration: none;

    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 3px;
    margin-bottom: 1px;

       -moz-transition: all 0.2s ease-in-out;
     -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
}

.glass a:hover {
    border-color: #CCF;
    color: steelblue;

    opacity: .9;
 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";  /* IE8 */
     filter: alpha(opacity=90); /* IE 5-7  */

    background-image: -moz-linear-gradient(left top, #0000D0, #000050);
    background-image: -webkit-gradient(linear, left top, right bottom, from(#0000D0), to(#000050));
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorStr='#CCDDEE', EndColorStr='#8899AA'); /* IE6,IE7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorStr='#CCDDEE', EndColorStr='#8899AA')"; /* IE8 */

   -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
     -o-transform: scale(1.05);
-webkit-transform: scale(1.05);
    transform: scale(1.05);

    -moz-box-shadow: 0 0 5px #777;
     -ms-box-shadow: 0 0 5px #777;
 -webkit-box-shadow: 0 0 5px #777;
     box-shadow: 0 0 5px #777;

    z-index: 50;
}

.glass a:hover img {
    visibility: visible;
}

/* other gradient colors:
    red: #F00000, #550000
    orange: #F07010, #472008
    yellow: #FFFF00, #555500
    green: #00D000, #005000
    blue: #0000D0, #000050
    purple: #8E258E, #160616
    silvery-blue: #CCDDEE, #8899AA
    brown: #EFAF5F, #663322
*/

/* end of front-page-only stuff */
