/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/**
a, a:visited {
    color: #423a39;
    text-decoration: none;
}
a:hover {
    color: #693b35;
    text-decoration: underline;
}
*/
td.item span{
	margin: 0 3px 3px 0;
}

#shop_map{
	width:710px;
	height:500px;
	margin:0 auto 0px;
	border:solid 1px #111;
}
#page_loading{
	width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0%;
    bottom: 0%;
    z-index: 99999;
    text-align: center;
}
#loading {
	position: absolute;
    top: 50%;
    left: 50%;
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #277abe; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }

}
.pagination a:hover,
.pagination a:focus,
.pagination a:active{
    color: #0CFFFF;
    text-decoration: none;
}