@charset "utf-8";
.col-lg-3.box {
	height: 470px;
	background-color: #f0f0f0;
	margin-top: -140px;
	margin-left: 35px;
	width: 257px;
	z-index:999;
}
.col-lg-3.box h2 {
	text-align: left;
	font-weight: lighter;
}
.col-lg-3.box a h2 {
	font-size: 23px;
	color: #2a2a2a;
	height: 52px;
	text-align: center;
	text-transform: uppercase;
}
.button {
	height:50px;
	width:130px;
}.col-lg-8 p {
	line-height: 25px;
}
.footer {
	width: 1140px;
	margin-right: auto;
	margin-left: auto;
}
.footer-holder {
	height: 108px;
	background-color: #3f3f3f;
}
.footer-menu ul li a {
	display: block;
	float: left;
	text-decoration: none;
	list-style-type: none;
	color: #CCC;
	padding: 20px;
	font-size: 15px;
}
.footer-menu ul li {
	display: block;
	list-style-type: none;
}
/*.footer-menu {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
}*/
.footerstrip {
	height: 33px;
	background-color: #1e1e1e;
}
.generalshs {
	width: 1140px;
	font-size: 11px;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	margin-right: auto;
	margin-left: auto;
	height: 15px;
}
.generalshs a {
	color: #FFFFFF;
	text-decoration: none;
}
.copy {
	float: right;
	color: #999;
	margin-top: 5px;
}
.shs li {
	color: #000;
	list-style-type: none;
	margin-left: 35px;
	width: 100px;
	float: left;
}
.generalshs li a {
	color: #333;
	text-decoration: none;
}
.power {
	width:150px;
	float: none;
	margin-left: auto;
	font-family: 'Michroma', sans-serif;
	margin-right: auto;
	margin-top:5px;
}
.social {
	float: right;
	padding-top: 10px;
}
.icon-small-fb {
	background-image:url(../includes/images/icon-small-fb.png);
	height: 32px;
	width: 32px;
	float: left;
	margin-right: 10px;
}
.icon-small-fb:hover {
	background-image: url(../includes/images/icon-small-fb-hover.png);
	height: 32px;
	width: 32px;
	float: left;
	margin-right: 10px;
}
.icon-small-tw {
	background-image: url(../includes/images/icon-small-tw.png);
	height: 32px;
	width: 32px;
	float: left;
	margin-right: 10px;
}
.icon-small-tw:hover {
	background-image: url(../includes/images/icon-small-tw-hover.png);
	height: 32px;
	width: 32px;
	float: left;
	margin-right: 10px;
}
.icon-small-in {
	height: 32px;
	width: 32px;
	float: left;
	background-image: url(../includes/images/icon-small-in.png);
}
.icon-small-in:hover {
	height: 32px;
	width: 32px;
	float: left;
	background-image: url(../includes/images/icon-small-in-hover.png);
}.footer-menu ul li a:hover {
	color: #D76028;
}
.footer-menu ul li a.active {
	color: #D76028;
}

#makeMeScrollable
		{
			width:100%;
			height: 330px;
			position: relative;
		}
		
		/* Replace the last selector for the type of element you have in
		   your scroller. If you have div's use #makeMeScrollable div.scrollableArea div,
		   if you have links use #makeMeScrollable div.scrollableArea a and so on. */
		#makeMeScrollable div.scrollableArea img
		{
			position: relative;
			float: left;
			margin: 0;
			padding: 0;
			/* If you don't want the images in the scroller to be selectable, try the following
			   block of code. It's just a nice feature that prevent the images from
			   accidentally becoming selected/inverted when the user interacts with the scroller. */
			-webkit-user-select: none;
			-khtml-user-select: none;
			-moz-user-select: none;
			-o-user-select: none;
			user-select: none;
		}

/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
	/* The hotspots have a minimum width of 100 pixels and if there is room the will grow
    and occupy 15% of the scrollable area (30% combined). Adjust it to your own taste. */
	min-width: 75px;
	width: 10%;
	height: 100%;
	/* There is a big background image and it's used to solve some problems I experienced
    in Internet Explorer 6. */
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 200;
	left: 0;
	/*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
	cursor: url(../images/cursor_arrow_left.png), url(../images/cursor_arrow_left.cur),w-resize;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
	background-image: url(../images/arrow_left.gif);				
	background-color: #fff;
	background-repeat: no-repeat;
	opacity: 0.35; /* Standard CSS3 opacity setting */
	-moz-opacity: 0.35; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
	filter: alpha(opacity = 35); /* Opacity for Internet Explorer. */
	zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
	min-width: 75px;
	width: 10%;
	height: 100%;
	background-image: url(../images/big_transparent.gif);
	background-repeat: repeat;
	background-position: center center;
	position: absolute;
	z-index: 200;
	right: 0;
	cursor: url(../images/cursor_arrow_right.png), url(../images/cursor_arrow_right.cur),e-resize;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
	background-image: url(../images/arrow_right.gif);
	background-color: #fff;
	background-repeat: no-repeat;
	opacity: 0.35;
	filter: alpha(opacity = 35);
	-moz-opacity: 0.35;
	zoom: 1;
}

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

div.scrollableArea
{
	position: relative;
	width: auto;
	height: 100%;
}.col-lg-3.box a h2:hover {
	color: #D76028;
	text-decoration: none;
}
.inne-banner {
	margin-bottom: 25px;
	background-image: url(../images/inner-banner.jpg);
	height: 366px;
}
#map {
    width: auto;
    height: auto;
    margin-bottom:10px;
}
.address-holder {
	height: 300px;
	width: 400px;
	float: left;
	padding: 20px;
	margin-left: 20px;
}
.contact-form .address {
	float: right;
	margin-right: 100px;
	font-size: 15px;
	line-height: 25px;
}
.service-image-holder {
	height: 235px;
	margin-top: 20px;
	margin-bottom: 25px;
}
.sep {
	height: 10px;
}
.caption-bg {
	background-image:url(../images/caption-bg.png);
}


.form-group {
	position: relative;
}
.form-group label.error {
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 10px;
	color: #C0392B;
	width: 100%;
}
.form-group.has-error .form-control {
	border-color: #C0392B;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}