@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700|PT+Sans+Narrow:400,700);
@charset "UTF-8";
/* CSS Document */
/* Layouts for the map info window */

/* This is the inner container for the content */
/*This is the style for the information container htis is also where your custom info box icon is applied.*/
/*I'm using the PT Sans font from google fonts but you can use what ever font you wish just chanfe the font styles in the css*/
.info {
    display: block;
    margin: 0px;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    background-image: url(/ModuleTemplates/map-app/info-window-icon.png);
    background-repeat: no-repeat;
    background-position: 0px 10px;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 50px;
    overflow: visible;
    z-index: 400;
}
/*This sets the styles for the item title link in the infobox*/

.info1 {margin: 0;}

.info1 a{
    font-size: 16px;
    font-weight: 400;
    color: #333;
    font-family: "PT Sans Narrow", sans-serif;
    text-decoration: none;
}
/*This is the style for the button in the infobox*/
.infoweb a:link, .infoweb a:visited {
    background-color: #822800;
    color: #FFF;
    font-size: 14px;
    display: block;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-family: "PT Sans Narrow", sans-serif;
    text-align: center;
}
/*This sets the hover colour for the button*/
.infoweb a:hover {
    background-color: #10131c;
}
/*This sets the style for the little box next to the button*/
.popOut {
    width: 24px;
    padding: 10px;
    position: absolute;
    background-color: #822800;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    display: block;
    margin-top: 52px;
    margin-left: -50px;
    visibility: inherit;
    z-index: 500;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
/*This is the style for the text under the title*/
.infotel {
    margin: 0px;
    padding: 0px;
}
/* Map page stles */
/*This is the outer map holder its not required but you must be able to understand css to change the styles*/
.map-holder {
    border: 3px solid #10131c;
    height: 700px;
    width: 910px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
/*This styles up the map canvas which the script uses to generate te map*/
#map_canvas {
    display: block;
    height: 500px;
    width: 900px;
    margin-right: auto;
    margin-left: auto;
    padding: 0px;
    border: 3px solid #10131c;
    margin-bottom: 30px;
}