﻿/*------------------------------------------------------------------
[ Shortcuts / .shortcuts ]
*/
.shortcuts {
  text-align: center;
}
.shortcuts .shortcut {
  background-position: 0% 0%;
    width: 110px;
    display: inline-block;
    padding: 15px 0;
    margin: 0 5px 1em;
    vertical-align: top;
    text-decoration: none;
    background-repeat: repeat-x;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 5px;
    background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
    background-color: #F3F3F3;
    background-attachment: scroll;
}
.shortcuts .shortcut .shortcut-icon {
  width: 100%;
  margin-top: .25em;
  margin-bottom: .35em;
  font-size: 32px;
  color: #555;
}
.shortcuts .shortcut:hover {
  background-position: 0% 0%;
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, #fafafa 0%, #e1e1e1 100%);
    background-color: #E8E8E8;
    background-attachment: scroll;
}
.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 {
  font: 13px/1.7em 'Open Sans'; 
  display: block;
  margin-top: .75em;
  font-weight: 400;
  color: #666;
}
