/* style.css */

body 
{
padding-top: 64px;
padding-bottom: 0px;
font-family: verdana, sans-serif;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 0px 0;
  margin: 0px;
  font-size: 17px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 0px solid #ccc;
  border: 0px solid rgba(0, 0, 0, .15);
  border-radius: 0px;
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .175);
          box-shadow: 0 0px 0px rgba(0, 0, 0, .175);
}

.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
}

.navbar-custom {
  background-color: #000000;
  border-color: #000000;
}
.navbar-custom .navbar-brand {
  color: #ffffff;
}
.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent;
}
.navbar-custom .navbar-text {
  color: #ffffff;
}
.navbar-custom .navbar-nav > li > a {
  color: white;				/* The top menu text */
  font-size:17px;
  font-family: verdana, sans-serif;
  font-weight: normal;
}

.navbar-custom .navbar-nav > li > a:hover,
.navbar-custom .navbar-nav > li > a:focus
{
  color: white;
  background-color: #EE6300; 
  /* background-color: blue;  THIS DOES THE HOVER ON TOP MENU ITEM */
}

.navbar-custom .navbar-nav > .active > a,
.navbar-custom .navbar-nav > .active > a:hover,
.navbar-custom .navbar-nav > .active > a:focus {
  color: white;
  background-color: #EE6300; /* has no effect */
}
.navbar-custom .navbar-nav > .disabled > a,
.navbar-custom .navbar-nav > .disabled > a:hover,
.navbar-custom .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent;
}
.navbar-custom .navbar-toggle {
  border-color: #dddddd;  border: 0px solid black; title: "toggle menu";
}
.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
  /* background-color: #dddddd; */
  border: 0px solid black; 
  title: "toggle menu";
}
.navbar-custom .navbar-toggle .icon-bar {
  background-color: #cccccc;
}
.navbar-custom .navbar-collapse,
.navbar-custom .navbar-form {
  border-color: #000000;
  border: 0px solid black;
}
.navbar-custom .navbar-nav > .dropdown > a:hover .caret,
.navbar-custom .navbar-nav > .dropdown > a:focus .caret {
  border-top-color: white;
  border-bottom-color: white;
  color: white;
}

.navbar-custom .navbar-nav > .open > a,
.navbar-custom .navbar-nav > .open > a:hover,
.navbar-custom .navbar-nav > .open > a:focus {
  background-color: #025655;
  color: white;
}
.navbar-custom .navbar-nav > .open > a .caret,
.navbar-custom .navbar-nav > .open > a:hover .caret,
.navbar-custom .navbar-nav > .open > a:focus .caret {
  border-top-color: white;
  border-bottom-color: white;
  color: #EE6300;
}
.navbar-custom .navbar-nav > .dropdown > a .caret {
  border-top-color: white;
  border-bottom-color: white;
  color: white;
  margin-left: 3px;
}

.navbar-custom .navbar-nav .open .dropdown-menu 
{
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  border: 0px solid red;	/* the border around the drop down lists */
 }



.navbar-custom .navbar-nav .open .dropdown-menu > li > a {
  color: white;
  background-color: black;
  font-size:17px;
  font-family: verdana, sans-serif;
  font-weight: normal;
  /* text-transform: uppercase; */
  }

.navbar-custom .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-custom .navbar-nav .open .dropdown-menu > li > a:focus {
    color: white;
    background-color: #EE6300;  /* has no effect */

  }


.navbar-custom .navbar-nav .open .dropdown-menu > li > form {
  color: white;
  background-color: black;
  font-size:17px;
  font-family: verdana, sans-serif;
  font-weight: normal;
  /* text-transform: uppercase; */
  }



/* MEDIA */



  .navbar-custom .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-custom .navbar-nav .open  .dropdown-menu > li > a:focus {
    color: white;
    background-color: #EE6300; /* on hover on dropdown items but not top menu item /*
  }



@media (max-width: 767) {
  .navbar-custom .navbar-nav .open .dropdown-menu .dropdown-hover > li > a {
    color: #ffffff;  display: block;
  }

  .navbar-custom .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-custom .navbar-nav .open .dropdown-menu > li > a:focus {
    color: white;
    background-color: #EE6300;  /* has no effect */
   /* background-color: blue; */
  }
  .navbar-custom .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-custom .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-custom .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #c0c0c0;
    background-color: #000000;
  }
  .navbar-custom .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-custom .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-custom .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
  }
}


.navbar-custom .navbar-link {
  color: #ffffff;
}
.navbar-custom .navbar-link:hover {
  color: #c0c0c0;
}

.navbar-text > a 
{
/* color: inherit; */
text-decoration: none;
}

.navbar-default
{
border: 0px;
min-height: 49px;
background: black;
}

.navbar-brand
{
min-height: 36px;
margin-top: 0px;
font-size:36px;
font-family: 'times new roman', sans-serif;
font-style: italic;
text-decoration: none;
padding-top: 12px;
color: #ffffff;
}

.navbar-inverse
{
border-radius: 0px;
background: black;
}

.navbar-text > p > a
{
color: inherit;
text-decoration: none;
border-bottom: 1px dotted #e0e0e0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  color: inherit;
}


.divider
{
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

.circle
{
width:16px;height:16px;border-radius:8px;font-size:12px;color:#fff;line-height:13px;text-align:center;background:#e0e0e0; margin-top: 3px;
}

/* LISTS */

.ul-arrow
{
padding-left: 15px; 
list-style-image:url(../img/arrow.png);
font-size: 15px; 
font-family:Verdana,Arial,Tahoma;
}

.ul-custom
{
padding-left: 15px; 
list-style: circle;
font-size: 15px; 
font-family:Verdana,Arial,Tahoma;
}




.ul-none
{
padding-left: 0px; 
list-style: none;
font-size: 15px; 
font-family:Verdana,Arial,Tahoma;
}

.ul-header
{
    padding-left: 20px; 
    list-style: circle;
    font-size:24px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
}



/* HEADERS */

.h2
{
    font-size:36px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    color: #a0a0a0;
    margin: 0px 0;
}

.h2-custom
{
    font-size:36px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    margin-bottom: 5px;
}

.h2-gallery
{
    font-size:36px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #a0a0a0;
}


.h3-custom
{
    font-size:24px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
}

.h3-cam
{
    font-size:24px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-decoration: none;

}

.h3-strapline
{
   /*  font-size:24px; */
    /* font-family: 'times new roman', sans-serif; */
    /* font-style: italic; */
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
    font-size:12px;
    letter-spacing:2px;
    font-family: 'Trebuchet MS', 'Myriad Pro', Arial, sans-serif;
font-family: 'tahoma','verdana', sans-serif;
    line-height:18px;
    text-transform:uppercase;
   /*  content: "An unofficial website featuring the West Somerset Railway"; */
}

.h3-custom-url	/* changing places */
{
    font-size:18px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
    text-align: center;
}


.h3-gallery
{
    font-size:27px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
}


.h3-custom-latest
{
    font-size: 21px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
}


.h4-custom
{
    font-size:15px;
    font-family: 'verdana', sans-serif;
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
    font-weight: normal;
}

.h5-custom
{
    font-size:15px;
    font-family: 'verdana', sans-serif;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    font-weight: normal;
}

.h4-custom-cams
{
    font-size:15px;
    font-family: 'verdana', sans-serif;
    margin: 0px 0;
    padding-top: 3px;
    padding-bottom: 4px;
    padding-left: 4px;
    padding-right: 4px;
    text-decoration: none;
    font-weight: normal;
    border: 0px darkgrey solid;
    background: #fefefe;
    background: black; 
    background:rgba(0,0,0,0.2);
    color: white;
}


/* SPAN */

.span-custom
{
margin: 0px 0;
padding: 10px;
}


/* PARAGRAPH */

.p
{
	font-size:15px;
	font-family: 'verdana', sans-serif;
}

.p-news
{
	font-size:15px;
	font-family: 'verdana', sans-serif;
	 text-decoration: none;
}

.p-custom-news
{
	font-size:15px;
	font-family: 'verdana', sans-serif;
	padding-top: 0px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	 text-decoration: none;
}

.p-quote
{
	border-left: 4px solid #f0f0f0;
	padding-left: 10px;
	font-size:15px;
	font-family: 'verdana', sans-serif;
}

.p-quote-top
{
	border-left: 4px solid #f0f0f0;
	padding-left: 10px;
	padding-top: 0px;
	padding-bottom: 10px;
	font-size:15px;
	font-family: 'verdana', sans-serif;
	margin-bottom: 0px;
}

.p-quote-middle
{
	border-left: 4px solid #f0f0f0;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-top: 0px;
	font-size:15px;
	font-family: 'verdana', sans-serif;
	margin-bottom: 0px;
}

.p-quote-bottom
{
	border-left: 4px solid #f0f0f0;
	padding-left: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	font-size:15px;
	font-family: 'verdana', sans-serif;
	margin-bottom: 15px;
}

.p-buttons
{
	padding-top: 10px;
	font-size:15px;
	font-family: 'verdana', sans-serif;
	 text-decoration: none;
}

.p-cams
{
	font-size:15px;
	font-family: 'verdana', sans-serif;
	 text-decoration: none;
	color: white;
}



/* RECENT NEWS DATES */

.news-dates
{
	font-size:21px;
    	font-family: 'times new roman',serif;
	text-decoration: none;
	font-weight: bold;
	color: #f0f0f0;
	text-align: center;
   	font-style: italic;


}

/* BACKGROUND COLOURS */
.background-sienna{ background-color: #FF903F;}
.background-cadetblue { background-color: cadetblue;}
.background-light-purple { background-color: #d18ad2;}
.background-dark-purple { background-color: #800080;}
.background-darkseagreen { background-color: darkseagreen;}
.background-seagreen { background-color: seagreen;}
.background-black { background-color: black;}
.background-white { background-color: white;}
.background-light-grey { background-color: #fdfdfd;}
.background-light-mid-grey { background-color: #fafafa;}
.background-mid-grey { background-color: #f0f0f0;}
.background-darker-mid-grey { background-color: #808080;}
.background-brighter-grey { background-color: #606060;}
.background-dark-grey { background-color: #101010;}
.background-indianred { background-color: indianred;}
.background-lightcoral { background-color: lightcoral;}
.background-tomato { background-color: tomato;}
.background-pink { background-color: pink;}
.background-plum { background-color: plum;}
.background-cerise { background-color: #FF83BB;}
.background-gold { background-color: #FFD700;}  /* slightly darker than standard color "gold" */
.background-orange { background-color: orange;}
.background-darkorange { background-color: darkorange;}
.background-lightskyblue { background-color: lightskyblue;}
.background-grey { background-color: #c0c0c0; }
.background-ghost { background-color: #F8F8FF; }
.background-snow { background-color: #FFFAFA; }
.background-light-snow { background-color: #FFFDFD; }
.background-maroon { background-color: #C46A77;}
.background-red { background-color: #ff0000;}
.background-crimson { background-color: #dc143c;}
.background-old-green { background-color:  #025655; }
.background-older-green { background-color:  #007777; }
.background-trace { background-color: #fffcfc; }
.background-light-grey-box { border: 1px solid lightgrey; background-color: white; }
.background-light-grey-white-fill-box { border: 1px solid lightgrey; background-color: white; }
.background-light-grey-fill-box { border: 1px solid lightgrey; background-color: #fdfdfd; }
.background-light-success { background-color: #4CC265; }


.background-wsra { background-color: #357F35;}
.background-plc { background-color: #BA162D;}
.background-wssrt { background-color: #FF3E2F;}
.background-rally { background-color: #ED899D;}
.background-depg { background-color: #797E24;}



/* FOR WHITE TEXT */
.background-darkermaroon { background-color: #B04454;}
.background-darkersienna{ background-color: #FC6D04;}
.background-darkercerise { background-color: #FE54A0;}
.background-darkerbrown { background-color: #D56139;}
.background-darkertomato { background-color: #ff4d2e;}
.background-darkerpink { background-color: #ffa7b6;}
.background-darkerplum { background-color: #d68dd6;}
.background-darkerdarkseagreen { background-color: #a1c6a1;}
.background-darkergold{ background-color: #e6c200;}  /* slightly darker than standard color "gold" */
.background-darkerdarkorange { background-color: #e67e00;}
.background-darkerlightskyblue { background-color: #6fc4f9;}
.background-darkergrey { background-color: #b3b3b3;}
.background-dark-slate-blue { background-color: #483D8B; }

.background-midnightblue { background-color: #191970; }
.background-indigo { background-color: #4B0082; }
.background-darkmagenta { background-color: #8B008B; }
.background-mediumvioletred { background-color: #C71585; }
.background-seagreen { background-color: #2e8b57; }

.background-boot-red { background-color: #C9302C; }
.background-boot-old-gold { background-color: #EC971F; }
.background-boot-blue { background-color: #286090; }
.background-boot-green { background-color: #449D44; }
.background-boot-darkorange{ background-color: #E67E00; }

/* TEXT COLOUR */

.text-white { color: white; }
.text-black { color: black; }
.text-grey { color: #a0a0a0; }
.text-light-grey { color: #c0c0c0; }
.text-blue { color: #0271B9; }
.text-dark-blue { color: #0C4970; }

/* A TAGS */


.external-link-icon
{
color: #d0d0d0;
}

.div-camera
{
    padding-top: 0px;
    padding-bottom: 5px;
    margin-top: 0px;
}

.span-camera
{
    color: #e0e0e0;
    font-size:10px;
    padding-top: 0px;
margin-top: 5px;
}

.span-camera:hover
{
    color: #e0e0e0;
    text-decoration: none;
}

.a-info
{
    display:block;
    width:16px;
    height:16px;
    border-radius:8px;
    color: white;
    font-size:12px;
    font-family: 'times new roman', sans-serif;
    font-weight: bold;
    font-style: italic;
    line-height:15px;
    text-align:center;
    text-decoration:none;
    background:#f0f0f0;
    margin-top: 3px;
}

.a-info:hover
{
    color: white;
    text-decoration: none;
}

.a-info-times
{
    display:block;
    width:16px;
    height:16px;
    border-radius:8px;
    color: white;
    font-size:12px;
    font-family: 'times new roman', sans-serif;
    font-weight: bold;
    font-style: italic;
    line-height:15px;
    text-align:center;
    text-decoration:none;
    background:#f0f0f0;
    //margin-top: 3px;
}

.a-info-times:hover
{
    color: white;
    text-decoration: none;
}


.a
{
	font-size:15px;
	font-family: 'verdana', sans-serif;
	text-decoration: none;

}


.a-front:hover
{
	color: inherit;
	text-decoration: none;
}

.a-cp	/* changing places */
{
   
    font-size:24px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin-top: 20px;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
   border-bottom: 1px dotted #0271B9;
}

.a-cp:hover	/* changing places */
{
   
    font-size:24px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin-top: 20px;
    padding-top: 4px;
    padding-bottom: 1px;
    text-decoration: none;
   border-bottom: 1px solid #0271B9;
}


a.dots
{
font-size: 15px;
font-family: open sans, Verdana,Arial,Tahoma;
/* color: #EE6300; */
color: black;
/* border-bottom: 3px solid #FFDFA4; */
border-bottom: 1px dotted #000;
text-decoration: none; 
/* font-weight: 300; */
/* text-transform: uppercase; */
/* text-style: normal; */
outline: 0;
}

a.dots:hover
{
border-bottom: 1px solid #999;
text-decoration: none; 
}

a.dots-old-news
{
font-size: 15px;
font-family:Verdana,Arial,Tahoma;
color: black;
border-bottom: 1px dotted #999;
text-decoration: none; 
}

a.dots-old-news:hover
{
border-bottom: 1px solid #999;
text-decoration: none; 
}

a.nodots
{
font-size: 15px;
font-family: Verdana,Arial,Tahoma;
/* color: #EE6300; */
color: black;
/* border-bottom: 3px solid #FFDFA4; */
border-bottom: 0px dotted #000;
text-decoration: none; 
/* font-weight: 500; */
/* text-transform: uppercase; */
/* text-style: normal; */
}

a.nodots-front-page
{
font-size: 16px;
font-family: Verdana,Arial,Tahoma;
/* color: #EE6300; */
color: black;
/* border-bottom: 3px solid #FFDFA4; */
border-bottom: 0px dotted #000;
text-decoration: none; 
/* font-weight: 500; */
/* text-transform: uppercase; */
font-style: normal;
}

a.nodots-front-page:hover
{
border-bottom: 1px solid #999;
text-decoration: none; 
}

a.heading-front-page
{
    font-size:24px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    margin: 0px 0;
    padding-top: 4px;
    padding-bottom: 5px;
    text-decoration: none;
   outline: 0;
}

a.heading-front-page:hover
{
border-bottom: 0px solid #999;
text-decoration: none; 
color: inherit;
}



a.carousel
{
font-size: 15px;
font-family: Verdana,Arial,Tahoma;
/* color: #EE6300; */
color: white;
/* border-bottom: 3px solid #FFDFA4; */
border-bottom: 1px dotted white;
text-decoration: none; 
/* font-weight: 500; */
/* text-transform: uppercase; */
/* text-style: normal; */
}

a.carousel:hover
{
border-bottom: 1px solid white;
text-decoration: none; 
}

.non-carousel-caption
{
position:absolute; right:15px; bottom: 20px; left:15px; z-index:10; padding-top:10px; padding-bottom:6px; color:#fff; text-align:center; text-shadow:0 1px 2px rgba(0,0,0,.6)
}

a.links
{
font-size: 15px;
font-family:Verdana,Arial,Tahoma;
color: black;
border-bottom: 0px dotted #999;
text-decoration: none; 

}

a.links:hover
{
border-bottom: 0px solid #999;
text-decoration: none; 
}

a.cam
{
font-size: 15px;
font-family: open sans, Verdana,Arial,Tahoma;
color: white;
border-bottom: 1px dotted white;
text-decoration: none; 
outline: 0;
}

/* RECENT NEWS */

.recent
{

}
.recent:hover
{
background: #eee;
}


/* NEWS PAGE */

.subheader-news
{
padding-top: 20px;
padding-bottom: 12px;
}

.subheader-news-latest
{
padding: 10px;
padding-bottom: 2px;
}

.subheader-news-front-page
{
padding-top: 10px;
padding-bottom: 12px;
}



.img-news
{
border-color: black; border-style: solid; border-width: 1px; margin-top: 0px;
}

.img-news-grey
{
border-color: #f0f0f0; border-style: solid; border-width: 1px;
}


.text-news
{
padding-bottom: 20px;
padding-top: 0px;
}

.text-news:hover
{
//background: snow;
background: #fdfdfd;
}


/* CALENDAR */

.btn-width
{
width: 14.28571428571429%; 
/* width: 14%; */
margin-top: 1px;
font-size: 15px;
font-family:Verdana,Arial,Tahoma;
}

.btn-title-width
{
/* width: 71.42857142857143%; */
width: 70.41857142857143%;
margin-top: 1px;
font-size: 15px;
font-family:Verdana,Arial,Tahoma;
color: black;
}

/* STATIONS */

.btn-station
{
font-size: 15px;
font-family:Verdana,Arial,Tahoma;
}


/* TRAIN INFORMATION */

/* train info span */
.span-traininfo
{
cursor: pointer;
}

/* Tooltip */
.tip-traininfo + .tooltip > .tooltip-inner {

	background-color: black; 
     	color: white; 
      	border: 1px solid black; 
      	padding: 5px;
	font-size: 15px;
	font-family:Verdana,Arial,Tahoma;

  }

/* PANEL */
.panel {
   /* border: 0px solid transparent; */
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, .05);
          box-shadow: 0 0px 0px rgba(0, 0, 0, .05);
}

.panel-default
{
border-radius: 0px;
}


.panel-title
{
	font-size: 15px;
	font-family:Verdana,Arial,Tahoma;
	/* color: black; */
}

.panel-body
{
	font-size: 15px;
	font-family:Verdana,Arial,Tahoma;
	/* color: black; */
	padding: 10px;
}

.panel-divider {
  height: 1px;
  width:100%;
  display:block; /* for use on default inline elements like span */
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.custom-divider {
  height: 1px;
  width:100%;
  display:block; /* for use on default inline elements like span */
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-divider {
  height: 1px;
  width:100%;
  display:block; /* for use on default inline elements like span */
  margin: 0px 0;
  overflow: hidden;
  background-color: #606060;  
}

.div-listing
{
   padding-top: 3px;
   padding-bottom: 3px;
}

.div-title-listing
{
   padding-top: 12px;
   padding-bottom: 3px;
}

/* TILED IMAGES */

.thumbnail
{
	border: 1px solid grey;
	border-radius: 0px;
	padding: 10px;
}

.thumbnail-a 
{
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}


.img-stations
{
	border: 1px solid black;
	margin-bottom: 20px;
}

.h3-stations
{
color: white;
position: absolute; 
top: 2px;
left: 25px; 
}

.h3-stations-front-page
{
color: white;
}

.h3-cams
{
color: white;
position: absolute; 
top: 5px;
left: 15px; 
}

.h4-cams
{
color: #fefefe;
position: absolute; 

//top: 10px;
left: 10px;
bottom: 10px;

 text-align: center;
}

.h4-fs
{
color: white;
position: absolute; 

top: 10px;
left: 10px;
//bottom: 10px;

 text-align: center;
}




/* FORMS - GET RID OF SHADOW WHEN BUTTON IS PART OF INPUT TEXT AND ACTIVE ! */

.form-control {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
          box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid black;
  border-right: 4px solid transparent;
  border-bottom: 0 dotted;
  border-left: 4px solid transparent;
  content: "";
}

/* BLOCKQUOTES */

blockquote 
{
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}

blockquote:before 
{
  color: #ccc;
  content: open-quote;
  font-size: 36px;
  font-family:Verdana,Arial,Tahoma;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p 
{
  display: inline;
}

/*CSS FOR THE LITE VERSION */

.lite-button {
    background-color: black; 
    border: 1px solid #808080;
    color: white;
    padding-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size:36px;
    font-family: 'times new roman', sans-serif;
    font-style: italic;
    text-decoration: none;
}

.lite-button:hover {
    /* background-color: #EE6300; */
    background-color: #007777; 
    border: 1px solid black;
    color: white;
}

.lite-sub-header:hover
{
    background-color: snow; 
    //border: 1px solid black;
    color: black;
}

/* READ MORE STUFF BUTTONS */

.btn-more-info { 
  color: darkgrey; 
  background-color: #FFFFFF; 
  border-color: #cfcfcf; 
  margin-top: 0px;
  margin-bottom: 10px;
  border-radius: 0px;
} 

.btn-more-info:hover,
.btn-more-info:focus, 
.btn-more-info:active, 
.btn-more-info.active
{
outline: none; 
  background-color: #FDFDFD; 
  border-color: #AFAFAF; 
} 

.icon-sym
{
font-size: 14px;
}

.icon-pdf
{
font-size: 14px;
/* color: #ff3333; */ /* red */
}

.icon-link
{
font-size: 14px;
/* color: skyblue; */
}

.icon-share
{
font-size: 14px;
/* color: springgreen; */
}


/* SHARE BUTTONS */


.btn-submit { 
  color: #ffffff; 
  background-color: #5cb85c; 
  border-color: #5cb85c; 
  border-radius: 0px;
} 
 
.btn-submit:hover, 
.btn-submit:focus, 
.btn-submit:active, 
.btn-submit.active, 
.open .dropdown-toggle.btn-submit { 
  color: #ffffff; 
  background-color: #449D44; 
  border-color: #449D44; 
} 

.btn-return { 
  color: #AFAFAF; 
  background-color: #FFFFFF; 
  border-color: #cfcfcf; 
  border-radius: 0px;
} 
 
.btn-return:hover, 
.btn-return:focus, 
.btn-return:active, 
.btn-return.active, 
.open .dropdown-toggle.btn-return { 
 // color: #AFAFAF; 
  background-color: #FDFDFD; 
  border-color: #AFAFAF; 
} 

.btn-sample { 
  color: #AFAFAF; 
  background-color: #FFFFFF; 
  border-color: #cfcfcf; 
  border-radius: 0px;
} 
 
.btn-sample:hover, 
.btn-sample:focus, 
.btn-sample:active, 
.btn-sample.active, 
.open .dropdown-toggle.btn-sample { 
 // color: #AFAFAF; 
  background-color: #FDFDFD; 
  border-color: #AFAFAF; 
} 
 
.btn-sample:active, 
.btn-sample.active, 
.open .dropdown-toggle.btn-sample { 
  background-image: none; 
} 
 
.btn-sample.disabled, 
.btn-sample[disabled], 
fieldset[disabled] .btn-sample, 
.btn-sample.disabled:hover, 
.btn-sample[disabled]:hover, 
fieldset[disabled] .btn-sample:hover, 
.btn-sample.disabled:focus, 
.btn-sample[disabled]:focus, 
fieldset[disabled] .btn-sample:focus, 
.btn-sample.disabled:active, 
.btn-sample[disabled]:active, 
fieldset[disabled] .btn-sample:active, 
.btn-sample.disabled.active, 
.btn-sample[disabled].active, 
fieldset[disabled] .btn-sample.active { 
  background-color: #FFFFFF; 
  border-color: #AFAFAF; 
} 
 
.btn-sample .badge { 
  color: #FFFFFF; 
  background-color: #AFAFAF; 
}


.btn-share: {
    background-color: snow; 
    border: 1px solid snow;
    color: maroon;
}

.btn-share:hover {
    background-color: white; 
    border: 1px solid snow;
    color: darkgreen;
}

/* GO TO TOP BUTTON */

#goTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d0d0d0;
  opacity: 0.5;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#goTopBtn:hover {
  background-color: #e0e0e0;
  opacity: 0.9;
}

/* WEBCAM SYMBOL IN MENU */

.webcam
{
color: white; 
font-size: 13px; 
vertical-align: 5%;
}

/* NAV TABS */

.nav-tabs-custom
{
background: white;
border-radius: 0px;
outline: none;
font-size:24px;
font-family: 'times new roman', sans-serif;
font-style: italic;
margin: 0px 0;
padding-top: 4px;
padding-bottom: 0px;
text-decoration: none;
color: black;
}

/* NEXT SERVIcES PAGE */

.div-next
{
color: white;
}

.div-next:hover
{
border: 0px solid black;
}



