﻿/*------------------------------------------------------------------
[ Shortcuts / .shortcuts ]
*/
.shortcuts {
    text-align: left !important;
}
.shortcut {
    text-align: center !important;
}
    .shortcuts .shortcut {
        width: 120px;
        display: inline-block;
        padding: 5px 0;
        margin: 0 5px 1em;
        vertical-align: top;
        text-decoration: none;
        background: #F3F3F3;
        background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ffffff), to(#eeeeee));
        background-image: -webkit-linear-gradient(top, #ffffff, 0%, #eeeeee, 100%);
        background-image: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
        background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
        border: 1px solid #ddd;
        box-sizing: border-box;
        border-radius: 5px;
    }

        .shortcuts .shortcut .shortcut-icon {
            width: 100%;  
            font-size: 32px;
            color: #555;
        }

        .shortcuts .shortcut:hover {
            background: #E8E8E8;
            background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fafafa), to(#e1e1e1));
            background-image: -webkit-linear-gradient(top, #fafafa, 0%, #e1e1e1, 100%);
            background-image: -moz-linear-gradient(top, #fafafa 0%, #e1e1e1 100%);
            background-image: linear-gradient(to bottom, #fafafa 0%, #e1e1e1 100%);
            background-repeat: repeat-x;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffe1e1e1', GradientType=0);
        }

        .shortcuts .shortcut:active {
            box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        }

        .shortcuts .shortcut:hover .shortcut-icon {
            color: #666;
        }

    .shortcuts .shortcut-label {
        display: block;
        margin-top: 10px;
        color: #666;
    }

	        li {
            list-style-type:none !important;
        }