* {
    box-sizing: border-box;
}
#loading-image img {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: 0 0 260px rgba(0, 0, 0, 0.16);
    left: 44%;
    padding: 10px;
    position: fixed;
    top: 32%;
    z-index: 999;
    width: 260px;
    border-radius: 5px;
	text-align:center;
}
/* popup_box DIV-Styles*/
#popup_box {
    display: none;
    position: fixed;
    _position: absolute;
    height: auto;
    width: 400px;
    background: #ffffff;
    left: 41%;
    top: 35%;
    z-index: 100;
    margin-left: 15px;
    /* border: 0px solid #ffffff; */
    /* padding: 15px; */
    font-size: 15px;
    -moz-box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
    -webkit-box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
    box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
}
#popup_box .p-head , #panel .p-head{
	width:100%;
	float:left;
	padding:20px;
	text-align:right;
	background-color:#333;
	margin-bottom:20px;
}
#popuppanelBoxClose, #popupBoxClose {
    font-size: 20px;
    line-height: 15px;
    right: 5px;
    top: 5px;
    position: absolute;
    color: #ffffff;
    font-weight: 500;
    padding: 8px;
}
#popuppanelBoxClose:hover, #popupBoxClose:hover {
    color: #0a7599;
    text-decoration:none;
}
#popuppanelBoxClose::before {
    content: "X";
}
.direction-form #destinationform {
    float: left;
    padding: 20px 20px 30px 20px;
    text-align: center;
    margin: 0;
    width: 100%;
}
.direction-form #destinationform .fields {
    display: block;
    text-align: left;
    width: 300px;
    margin: 0 auto;
}
.direction-form #destinationform .fields label {
    display: block;
}
.direction-form #destinationform .fields input {
    display: block;
    width: 100% !important;
    margin-bottom: 10px;
    margin-top: 5px;
}
input#go {
    padding: 8px 36px;
    text-transform: capitalize;
    border: 1px solid #0a7599;
    background: #0a7599;
    font-size: 15px;
    color: #fff;
}
input#go:hover {
    border: 1px solid #045c79;
    background: #045c79;
}
#panel {    
	display:none;
	/* Hide the DIV */  
	position:fixed;       
	_position:absolute;
	/* hack for internet explorer 6 */  
    height: 222px;
    width: 400px;
    background: #ffffff;
    left: 41%;
    top: 35%;
	z-index:100;
	/* Layering ( on-top of others), if you have lots of layers: I just maximized, you can change it yourself */  
	margin-left: 15px;
	/* additional features, can be omitted */ 
	/*border:2px solid #ff0000;  
	padding:15px;   */ 
	font-size:15px; 
    -moz-box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
    -webkit-box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
    box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
	overflow:auto;
	border:none;
	min-height:285px;
	border-radius:0px;
}
#panel > a {
    background: #333333 none repeat scroll 0 0;
    color: #ffffff;
    float: left;
    font-weight: 600;
    padding: 10px 20px 10px 10px;
    text-align: right;
    width: 100%;
	margin-bottom:20px;
}
#panel a:hover {
    color: #0a7599;
    text-decoration:none;
}
#container {
	background: #d2d2d2;
	/*Sample*/  
	width:100%; 
	height:100%;
} 
a{
	cursor: pointer;
	text-decoration:none; 
}  
	 /* This is for the positioning of the Close Link */
.active_page {
    background: #0a7599 !important;
    color: white !important;
}
#page_navigation a ,#navigation_page{
    padding: 6px 12px;
    border: 1px solid #d8d8d8;
    margin: 0px;
    color: #0a7599;
    text-decoration: none;
    background: #fff;
    margin-left: -1px;
    font-weight: 600;
}
,#navigation_page ,#page_navigation a:hover {
    background: #eee;
	color:#333;
}
#navigation_page, #page_navigation a:first-child {
	margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;	
}
#navigation_page, #page_navigation a:last-child {
	margin-left: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;	
}
	/*
 * Copyright 2009 The Closure Library Authors. All Rights Reserved.
 *
 * Use of this source code is governed by an Apache 2.0 License.
 * See the COPYING file for details.
 */

/*
 * Cross-browser implementation of the "display: inline-block" CSS property.
 * See http://www.w3.org/TR/CSS21/visuren.html#propdef-display for details.
 * Tested on IE 6 & 7, FF 1.5 & 2.0, Safari 2 & 3, Webkit, and Opera 9.
 *
 * @author attila@google.com (Attila Bodis)
 */

/*
 * Default rule; only Safari, Webkit, and Opera handle it without hacks.
 */
.goog-inline-block {
  position: relative;
  display: -moz-inline-box; /* Ignored by FF3 and later. */
  display: inline-block;
}

/*
 * Pre-IE7 IE hack.  On IE, "display: inline-block" only gives the element
 * layout, but doesn't give it inline behavior.  Subsequently setting display
 * to inline does the trick.
 */
* html .goog-inline-block {
  display: inline;
}

/*
 * IE7-only hack.  On IE, "display: inline-block" only gives the element
 * layout, but doesn't give it inline behavior.  Subsequently setting display
 * to inline does the trick.
 */
*:first-child+html .goog-inline-block {
  display: inline;
}
/*
 * Copyright 2009 The Closure Library Authors. All Rights Reserved.
 *
 * Use of this source code is governed by an Apache 2.0 License.
 * See the COPYING file for details.
 */

/*
 * Standard styling for goog.ui.Dialog.
 *
 * @author ssaviano@google.com (Steven Saviano)
 * @author attila@google.com (Attila Bodis)
 */


.modal-dialog {
  background: #c1d9ff;
  border: 1px solid #3a5774;
  color: #000;
  padding: 4px;
  position: absolute;
}

.modal-dialog a,
.modal-dialog a:link,
.modal-dialog a:visited  {
  color: #06c;
  cursor: pointer;
}

.modal-dialog-bg {
  background: #666;
  left: 0;
  position: absolute;
  top: 0;
}

.modal-dialog-title {
  background: #e0edfe;
  color: #000;
  cursor: pointer;
  font-size: 120%;
  font-weight: bold;
  padding: 8px 15px 8px 8px;
  position: relative;
  _zoom: 1; /* Ensures proper width in IE6 RTL. */
}

.modal-dialog-title-close {
  /* Client apps may override the URL at which they serve the sprite. */
  background: #e0edfe url(https://ssl.gstatic.com/editor/editortoolbar.png) no-repeat -528px 0;
  cursor: default;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 8px;
  width: 15px;
  vertical-align: middle;
}

.modal-dialog-buttons,
.modal-dialog-content {
  background-color: #fff;
  padding: 8px;
}

.goog-buttonset-default {
  font-weight: bold;
}
.goog-slider-horizontal {
    border: solid 1px #0a7599;
    background-color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    line-height: 14px;
	margin-top:6px;
}

.goog-slider-thumb {
  position: absolute;
  background-color: #0a7599;
  overflow: hidden;
  width: 10px;
  height: 100%;
  top: 0;
}

/*
////////////////////
/////02-09-2016/////
///////////////////
*/
input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="datetime"]::-moz-placeholder, input[type="email"]::-moz-placeholder {
    color: #828282;
}
.search-by-area .col-sm-6 select {
    color: #828282;
}
.custom-storelocator {
	float:left;
	width:100%;
}
.custom-storelocator .title {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%) repeat scroll 0 0;
    border: 1px solid #e8e8e8;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 30px;
    padding: 15px 15px 15px 45px;
    text-transform: uppercase;
	
	position:relative;
}
/*mgs-search-box CSS*/
.custom-storelocator .mgs-search-box {
    float: left;
    width: 100%;
}
.custom-storelocator .mgs-search-box .search-button {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none;
	float:left;
	width:100%;
	
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
	
    flex-flow: row wrap;
    -webkit-justify-content: left;
    -moz-justify-content: left;
    -ms-justify-content: left;
    justify-content: left;
}
.custom-storelocator .mgs-search-box .search-button .search-tab {
	position: relative;
    z-index: 1;
    display: table;
    margin: 0;
    text-align: center;
	float:left;
	text-transform:uppercase;
	
    /* -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1; */
	
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.custom-storelocator .mgs-search-box .search-button .search-tab span {
    padding: 8px 40px 8px 20px;
    color: #333;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    position: relative;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 2;
    float: left;
    cursor: pointer;
	font-weight:600;
}
.custom-storelocator .mgs-search-box .search-button .search-tab:hover span {
    color: #fff;
}
.custom-storelocator .mgs-search-box .search-button .search-tab:hover span::after {
    background: #0a7599;
}
.custom-storelocator .mgs-search-box .search-button .search-tab.active span {
    color: #fff;
}
.custom-storelocator .mgs-search-box .search-button .search-tab.active span::after {
    background: #0a7599;
}
.custom-storelocator .mgs-search-box .search-button .search-tab span::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    outline: 1px solid transparent;
    border-radius: 10px 10px 0 0;
    background: #eee;
    box-shadow: inset 0 -3px 3px rgba(0,0,0,0.05);
    content: '';
	
    -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
    transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.custom-storelocator .mgs-search-box .search-content {
    border: 1px solid #d8d8d8;
    background: #ffffff;
    margin-top: -3px;
    margin-bottom: 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
	float:left;
	width:100%;
}
.custom-storelocator .mgs-search-box .search-content .container-search {
    float: left;
    width: 100%;
}
.form-group {
	margin-bottom:10px;	
}
.form-control, .form-in {
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    box-shadow: none;
    color: #555555;
    display: block;
    font-size: 14px;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}
.custom-storelocator .mgs-search-box .search-content .container-search .search-by-distance {
	width:100%;
	float:left;
	padding:20px 0px 0px 0px
}
.custom-storelocator .mgs-search-box .search-content .container-search #form-search-area {
    padding: 20px 0px 10px 0px;
    width: 100%;
    float: left;
}
.custom-storelocator .mgs-search-box .search-content .container-search .search-by-distance .form-inline {
    float: left;
    width: 100%;
}
.search-content .container-search .search-by-distance .tax1-box {
	width:33.33%;
	float:left;	
	padding-left:15px;
	padding-right:15px;
}
.search-content .container-search .search-by-distance .tax1-box.last{
	float:right;
	width:17%;
}
.action.primary {
    background: #0a7599;
    border: 1px solid #097092;
}
.action.primary:hover {
    background: #045c79;
    border: 1px solid #045c79;
}
.action.primary:focus, .action.primary:active {
    background: #045c79 none repeat scroll 0 0;
    border: 1px solid #045c79;
    color: #ffffff;
}
.search-by-area .col-sm-6 {
    width: 15%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}
.short-list-area {
	width:100%;
	float:left;	
	margin-bottom:30px;
}
.short-list-area .short-list-left {
    width: 28%;
    float: left;
    padding-right: 15px;
}
.short-list-area .short-list-right {
	width:70%;
	float:right;	
}
.short-list-area .short-list-left h2 {
    background: #f0f0f0;
    color: #555;
    font-size: 15px;
    padding: 15px;
    border: 1px solid #d8d8d8;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
}
.short-list-area .short-list-left #store_list {
    border: 1px solid #d8d8d8;
    padding: 15px;
    height: 340px;
    overflow-x: hidden;
    overflow-y: auto;
}
.short-list-area .short-list-left #store_list .maindiv {
    background: #fff;
    margin-bottom: -1px;
    float: left;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    border: 1px solid #f0f0f0;
	cursor:pointer;
	
	transition:0.5s ease all;
	-o-transition:0.5s ease all;
	-ms-transition:0.5s ease all;
	-moz-transition:0.5s ease all;
	-webkit-transition:0.5s ease all;
}
.short-list-area .short-list-left #store_list .maindiv:last-child {
    margin-bottom: 20px;
}
.short-list-area .short-list-left #store_list .maindiv:hover {
    background: #f0f0f0;
}
.short-list-area .short-list-left #store_list .maindiv div img {
    float: left;
    width: 70px;
	min-height:70px;
    padding: 4px;
    background: #fff;
    border: 1px solid #d8d8d8;
    margin-right: 12px;
    margin-left: 10px;
}
.short-list-area .short-list-left #page_navigation {
    padding: 20px;
    border: 1px solid #eee;
    text-align: center;
    border: 1px solid #d8d8d8;
    margin-top: -1px;
    background: #f0f0f0;
}
#page_navigation a:last-child {
    margin-left: -1px;
}
.short-list-area .short-list-left #store_list .maindiv a.soteaddress {
    color: #0a7599;
    font-size: 14px;
    font-weight: 600;
    text-decoration:none ;
    padding-right: 10px;
}
.short-list-area .short-list-left #store_list .maindiv a {
    color: #0a7599;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    padding-right: 10px;
}
.short-list-area .short-list-left #store_list .maindiv a:hover {
    color: #333;
    text-decoration: none;
}
.search-content .container-search .search-by-distance .tax1-box .goog-slider {
    width: 100%;
}
.search-content .container-search .search-by-distance .tax1-box.last {
    width: 16%;
}
.search-content .container-search .search-by-distance .tax1-box {
    width: 42%;
}
.short-list-right #map-canvas {
    min-height: 450px !important;
    height: 450px !important;
}
.search-by-area .col-sm-6 {
    width: 16.6%;
}
.short-list-area .short-list-left #store_list .maindiv p {
    font-size: 13px;
	margin-bottom:2px;
}
@media only screen and (min-width:320px) and (max-width: 767px)  {
	#loading-image img {
		left: 25%;
		top: 55%;
		width: 160px;
	}
	.custom-storelocator .mgs-search-box .search-button .search-tab span {
		font-size: 11px;
		padding: 8px 28px 7px 13px;
	}
	.search-content .container-search .search-by-distance .tax1-box {
		float: left;
		width: 100%;
	}
	.search-content .container-search .search-by-distance .tax1-box.last {
		margin-top: 15px;
		width: 100%;
	}
	.short-list-area .short-list-left {
		padding-right: 0;
		width: 100%;
	}
	.short-list-area .short-list-right {
		width: 100%;
		margin-top:15px;
	}
	.short-list-right #map-canvas {
		min-height: 200px !important;
		height: 200px !important;
		border: 1px solid #dddddd
	}
	.search-by-area .col-sm-6 {
		width: 100%;
	}
}
@media only screen and (min-width:768px) and (max-width: 1024px)  {
	.search-by-area .col-sm-6 {
		width: 33.33%;
	}
	.search-content .container-search .search-by-distance .tax1-box {
		width: 37%;
	}
	.search-content .container-search .search-by-distance .tax1-box.last {
		width: 26%;
	}
	.short-list-area .short-list-left {
		float: left;
		padding-right: 15px;
		width: 32%;
	}
	.short-list-area .short-list-right {
		width: 68%;
	}
	.short-list-right #map-canvas {
		min-height: 450px !important;
		height: 450px !important;
	}
	.search-content .container-search .search-by-distance .tax1-box .goog-slider {
		width: 100%;
	}
}
@media only screen and (min-width:1025px) and (max-width: 1280px)  {
	.search-by-area .col-sm-6 {
		width: 33.33%;
	}
	.search-content .container-search .search-by-distance .tax1-box {
		width: 37%;
	}
	.search-content .container-search .search-by-distance .tax1-box.last {
		width: 26%;
	}
	.search-content .container-search .search-by-distance .tax1-box .goog-slider {
		width: 100%;
	}
	.short-list-right #map-canvas {
		min-height: 450px !important;
		height: 450px !important;
	}
	.short-list-area .short-list-left {
		width: 32%;
	}
	.short-list-area .short-list-right {
		width: 68%;
	}
}
@media only screen and (min-width:1281px) and (max-width: 1400px)  {
	.search-content .container-search .search-by-distance .tax1-box .goog-slider {
		width: 100%;
	}
	.search-content .container-search .search-by-distance .tax1-box.last {
		width: 16%;
	}
	.search-content .container-search .search-by-distance .tax1-box {
		width: 42%;
	}
	.short-list-right #map-canvas {
		min-height: 450px !important;
		height: 450px !important;
	}
	.search-by-area .col-sm-6 {
		width: 16.6%;
	}
}
/*mgs-search-box CSS*/
/*mgs-view-box CSS*/
.custom-storelocator-view {
    float: left;
    width: 100%;
	margin-bottom:30px;
}
.custom-storelocator-view .title {	
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%) repeat scroll 0 0;
    border: 1px solid #e8e8e8;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 30px;
    padding: 15px 15px 15px 48px;
    text-transform: uppercase;
	
	position:relative;
}
.icon01 {
    background: rgba(0, 0, 0, 0) url("../images/arrow-img.png") no-repeat scroll 2px 2px / 35px auto;
    height: 30px;
    left: 5px;
    position: absolute;
    top: 10px;
    width: 38px;
}
.custom-storelocator-view .custom-s-v-left {
    float: left;
    width: 30%;
    padding-right: 20px;
}
.custom-storelocator-view .custom-s-v-left .storeinfo {
    float: left;
    width: 100%;
    border: 1px solid #ddd;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.06);
}
.custom-storelocator-view .custom-s-v-right .gallery-image-area h2,
.custom-storelocator-view .custom-s-v-left .storeinfo h2,
.custom-storelocator-view .custom-s-v-left .opening-hours h2  {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%) repeat scroll 0 0;
    border-bottom: 1px solid #dddddd;
    color: #555555;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
    padding: 15px;
    text-transform: uppercase;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
    padding: 15px 15px 15px 45px;
	position:relative;
}
.icon02 {
    background: rgba(0, 0, 0, 0) url("../images/arrow-img.png") no-repeat scroll 2px -118px / 35px auto;
    height: 30px;
    left: 5px;
    position: absolute;
    top: 10px;
    width: 38px;
}
.icon03 {
    background: rgba(0, 0, 0, 0) url("../images/arrow-img.png") no-repeat scroll 2px -38px / 35px auto !important;
    height: 30px;
    left: 5px;
    position: absolute;
    top: 10px;
    width: 38px;
}
.icon04 {
    background: rgba(0, 0, 0, 0) url("../images/arrow-img.png") no-repeat scroll 2px -158px / 35px auto;
    height: 30px;
    left: 5px;
    position: absolute;
    top: 10px;
    width: 38px;
}
.custom-storelocator-view .custom-s-v-left .storeinfo .storename {
    float: left;
    width: 100%;
    padding: 10px 10px 0px 15px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.custom-storelocator-view .custom-s-v-left .storeinfo .address ,.custom-storelocator-view .custom-s-v-left .storeinfo .phone ,.custom-storelocator-view .custom-s-v-left .storeinfo .email ,.custom-storelocator-view .custom-s-v-left .storeinfo .fax ,.custom-storelocator-view .custom-s-v-left .storeinfo .link ,.custom-storelocator-view .custom-s-v-left .storeinfo .street{
    float: left;
    width: 100%;
    padding: 10px 10px 10px 15px;
}

.custom-storelocator-view .custom-s-v-left .opening-hours {
    border: 1px solid #dddddd;
    float: left;
    width: 100%;
	margin-top:20px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.06);
	position:relative;
}
.custom-storelocator-view .custom-s-v-left .opening-hours span {
    background: rgba(0, 0, 0, 0) url("../images/arrow-img.png") no-repeat scroll 2px -40px / 22px auto;
    display: block;
    padding: 8px 12px 8px 26px;
    border-bottom: 1px solid #ddd;
	cursor:default;
	
	transition:0.5s ease all;
	-o-transition:0.5s ease all;
	-ms-transition:0.5s ease all;
	-moz-transition:0.5s ease all;
	-webkit-transition:0.5s ease all;
}
.custom-storelocator-view .custom-s-v-left .opening-hours span:last-child {
    border-bottom: none;
}
.custom-storelocator-view .custom-s-v-left .opening-hours span:hover {
    padding-left: 30px;
}
.custom-storelocator-view .custom-s-v-left .opening-hours span:first-child {
    border-top:none;
}
.custom-storelocator-view .custom-s-v-right {
	float:left;
	width:70%;	
}
.custom-storelocator-view .custom-s-v-right #map-canvas {
	margin-top: 0;
	widows:100%;
	min-height:550px;
	box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.06);
}
.short-list-area .short-list-left h2 {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%) repeat scroll 0 0;
    color: #555;
    font-size: 15px;
    padding: 15px 15px 15px 45px;
    border: 1px solid #d8d8d8;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
	position:relative;
}
.storelocator-index-view div#map-canvas {
    border: 1px solid #ddd;
    margin-top: 10px;
    float: left;
}
.gallery-image-area {
    border: 1px solid #ddd;
    float: left;
    width: 100%;
	margin-top:20px;
	box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.06);
}
.gallery-image-area .fullview-image {
    width: 280px;
    margin: 20px auto 5px;
    float: none;
    text-align: center;
}
.gallery-image-area .fullview-image img#fullimage {
    background: #fff;
    margin: 0px;
    padding: 4px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.26);
}
.gallery-image-area .gallery-image {
    width: 260px;
    margin: 15px auto;
    float: none;
	text-align:center;
}
.gallery-image img.imagegallery {
    padding: 3px;
    cursor: pointer;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.26);
    margin: 0px 3px;
}
.gallery-image img.imagegallery:hover {
    background: #333;
}
/*map popup design*/
.custom-storelocator-view .custom-s-v-right .gm-style-iw > div {
    float: left;
    width: 300px;
}
.custom-storelocator-view .custom-s-v-right #content > #storeimage {
    float: left;
}
.custom-storelocator-view .custom-s-v-right #content > #storeimage > img {
    float: left;
    margin-right: 10px;
    width: 100px;
}
.custom-storelocator-view .custom-s-v-right #content #storename {
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}
.custom-storelocator-view .custom-s-v-right #content > p {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
}
@media only screen and (min-width:320px) and (max-width: 767px)  {
	.custom-storelocator-view .custom-s-v-left {
		padding-right: 0;
		width: 100%;
	}
	.custom-storelocator-view .custom-s-v-right {
		width: 100%;
	}
	.custom-storelocator-view .custom-s-v-right #map-canvas {
		margin-top: 20px;
		min-height: 180px;
	}
}
@media only screen and (min-width:768px) and (max-width: 1024px)  {
	.custom-storelocator-view .custom-s-v-left {
		width: 35%;
	}
	.custom-storelocator-view .custom-s-v-right {
		width: 65%;
	}
	.custom-storelocator-view .custom-s-v-right #map-canvas {
		min-height: 448px;
	}
}
/*mgs-view-box CSS*/
.storeinfo a {
    color: #0a7599;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    padding-right: 10px;
}
.storeinfo a:hover {
    color: #333;
    text-decoration: none;
}
.storeinfo a:visited{
	color: #0a7599;
}.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
#map-panel {
	display:none;
	/* Hide the DIV */  
	position:fixed;       
	_position:absolute;
	/* hack for internet explorer 6 */  
    height: 222px;
    width: 400px;
    background: #ffffff;
    left: 41%;
    top: 35%;
	z-index:100;
	/* Layering ( on-top of others), if you have lots of layers: I just maximized, you can change it yourself */  
	margin-left: 15px;
	/* additional features, can be omitted */ 
	/*border:2px solid #ff0000;  
	padding:15px;   */ 
	font-size:15px; 
    -moz-box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
    -webkit-box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
    box-shadow: 0 0 70px rgba(51, 51, 51, 0.14);
	overflow:auto;
	border:none;
	min-height:285px;
	border-radius:0px;
}
.gallery-image .page {
	padding: 5px 30px 30px 30px;
	max-width: 800px;
	margin: 0 auto;
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	background: #fff;
	color: #555;
}
.gallery-image img {
	border: none;
}
.gallery-image a:link,
.gallery-image a:visited {
	color: #F0353A;
}
.gallery-image a:hover {
	color: #8C0B0E;
}
.gallery-image ul {
	overflow: hidden;
}
.gallery-image pre {
	background: #333;
	padding: 10px;
	overflow: auto;
	color: #BBB7A9;
}
.gallery-image .button {
	text-decoration: none;
	color: #F0353A;
	border: 2px solid #F0353A;
	padding: 6px 10px;
	display: inline-block;
	font-size: 18px;
}
.gallery-image .button:hover {
	background: #F0353A;
	color: #fff;
}
.gallery-image .demo {
	text-align: center;
	padding: 30px 0
}
.gallery-image .clear {
	clear: both;
}
h1 {
	font-size: 2em;
	line-height: 1.5em;
	margin: 20px 0;
	font-weight: normal;
}

.gm-iv-address {
	height: auto !important;
}