@charset "utf-8";
/* CSS Document */

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) {
/***************************************
		Mobile Menu
***************************************/
@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot');
	src:url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon.woff') format('woff'),
		url('../fonts/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
.dl-menuwrapper {
	width: 100%;
	float: left;
	position: relative;
	z-index:9999;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}

.dl-menuwrapper:first-child {
	margin-right: 100px;
}

.dl-menuwrapper button {
	background: #1F391E ;
	border: none;
	width: 48px;
	height: 45px;
	text-indent: -900em;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
	background: #1F391E ;
}

.dl-menuwrapper button:after {
	content: '';
	position: absolute;
	width: 68%;
	height: 5px;
	background: #fff;
	top: 10px;
	left: 16%;
	box-shadow: 
		0 10px 0 #fff, 
		0 20px 0 #fff;
}

.dl-menuwrapper ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dl-menuwrapper li {
	position: relative;
	border-bottom:1px solid #FFF;
}

.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 6px 18px;
    font-size: 12px;
    line-height: 20px;
    color: #FFF;
    outline: medium none;
    text-decoration: none;
}

.no-touch .dl-menuwrapper li a:hover {
	background: rgba(255,248,213,0.1);
}

.dl-menuwrapper li.dl-back > a {
	padding-left: 30px;
	background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 30px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
	color:#fff;
}

.dl-menuwrapper li.dl-back:after {
	left: 10px;
	color: #fff;
	font-size: 12px;
}

.dl-menuwrapper li > a:after {
	right: 10px;
	color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
	margin: 5px 0 0 0;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
	display: none;
}

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
	display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
	display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
	position: absolute;
	width: 100%;
	top: 50px;
	left: 0;
	margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
	-webkit-animation: MenuAnimOut2 0.3s ease-in-out;
	animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
	-webkit-animation: MenuAnimOut3 0.4s ease;
	animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
	-webkit-animation: MenuAnimOut4 0.4s ease;
	animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
	-webkit-animation: MenuAnimOut5 0.4s ease;
	animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
}

.dl-menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
	-webkit-animation: MenuAnimIn2 0.3s ease-in-out;
	animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
	-webkit-animation: MenuAnimIn3 0.4s ease;
	animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
	-webkit-animation: MenuAnimIn4 0.4s ease;
	animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
	-webkit-animation: MenuAnimIn5 0.4s ease;
	animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
	-webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
	animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
	-webkit-animation: SubMenuAnimIn3 0.4s ease;
	animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
	-webkit-animation: SubMenuAnimIn4 0.4s ease;
	animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
	-webkit-animation: SubMenuAnimIn5 0.4s ease;
	animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
	-webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
	animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
	-webkit-animation: SubMenuAnimOut3 0.4s ease;
	animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
	-webkit-animation: SubMenuAnimOut4 0.4s ease;
	animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
	-webkit-animation: SubMenuAnimOut5 0.4s ease;
	animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
	display: block;
}

.no-js .dl-menuwrapper li.dl-back {
	display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
	content: '';
}

/* Colors for demos */

/* Demo 1 */
.demo-1 .dl-menuwrapper button {
	background: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
	background: #9e1847;
}

/***************************************
		Home Page
***************************************/
.container {
    width: 90%;
    margin: 0px auto;
}
.da-slider{
	display:none;	
}
.mobile_scroll{
	display:none;	
}
#menu1{
	display:none !important;	
}
.banner{
	height:184px;	
}
#dl-menu{
	display:block;

}
.mobile_banner{
	display:block !important;	
}
.cart ul {
    background-image: url("../images/shopping_cart.png");
    background-repeat: no-repeat;
    background-position: 10% 50%;
    float: right;
    padding-left: 30%;
}
.about_us {
    background-color: #EFEEEE;
    padding-top: 60% !important;
}
.banner_top .logo {
    width: 80%;
    float: left;
    margin: 4% 0 1% 20%;
}
.banner_top .cart {
	width: 50%;
	float: left;
	margin-top: 5%;
	margin-left:15%;	
}
#masthead {
	height: auto;
	overflow: visible;
	width: 100%;
}
.sub_holder {
    max-width: 100%;
    margin: 0px auto 0px;
}
#masthead_overlay {
    position: relative;
    z-index: 2;
    top: 0px;
    margin-top: 0px;
    height: 249px;
    width: 100%;
    overflow: visible;
}
#masthead_overlay h1 {
    position: absolute;
    padding-top: 20px;
    font-family: "Lato",sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
#masthead_overlay h2 {
    margin-bottom: 28px;
    font-family: "Lato",sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #363839;
    padding-top: 0px;
}
#masthead_overlay p {
   display:none;
}
#masthead_overlay #sections li {
    list-style: outside none none;
    display: none;
    height: 215px;
    position: absolute;
    width: 100%;
    pointer-events: all;
}
.overview_img {
    position: absolute;
    right: 0px;
    bottom: -15px;
    width: 84%;
    margin-right: 13%;
    margin-bottom: 0px;
}
.overview_copy {
    position: absolute;
    width: 100%;
    color: #FFF;
    top: 70px;
}
.video img{
    width:100%;
}
.grid li {
    height: 183px;
    width: 30%;
    float: left;
    margin: 5% 0px 0px 0% !important;
    box-shadow: 3px 3px 5px #888;
}
/***************************************
		About US
***************************************/

.about_us {
    background-color: #EFEEEE;
	padding-top:8%;
}
.banner_img_abt{
	margin-bottom:0.5%;	
}
.about_us object {
    width: 50%;
    height: 200px;
    margin-left: 47.4%;
    margin-top: 2%;
}
.about_us object {
    display:none;
}

#tabs li, #tabs2 li, #tabs3 li, #tabs4 li, #tabs5 li {
    float: left;
    margin-right: 2px;
    list-style: outside none none;
	width:80%;
	border:1px solid #fff;
}
.social_icons {
    width: 100%;
    margin: 0px auto;
}

.installation_inner_top {
    width: 60%;
    margin: 0px auto;
    background-color: #1F391E;
    height: 45px;
}
.installation_inner {
    width: 100%;
    margin: 0px auto;
    padding-bottom: 5%;
}
.installtion_section h5 {
    font-family: "Arial";
    font-size: 14px;
    color: #1F391E;
    font-weight: bold;
    padding: 9% 0px 0px 0%;
}
.installtion_section h6 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: bold;
    padding: 2% 0px 10% 0%;
}
#tabs li,#tabs2 li,#tabs3 li,#tabs4 li,#tabs5 li {
	float: left;
	margin-right: 2px;
	list-style:none;
	width:100%;
}

#tabs-1 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}
#tabs-2 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}
#tabs-3 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}

.manual_sec_top {
    height: 30px;
    background-color: #1F391E;
    width: 32%;
}
.manual_sec{
	display:none;
}
.manual_sec_mobile{
	display:block;
	padding-bottom:5%;	
}
.manual_sec_mobile h2 {
	font-family: 'Arial';
	font-size: 14px;
	color: #1f391e;
	font-weight: bold;
	padding: 1% 0 3%;
}
.manual_sec_top {
	height: 30px;
	background-color: #1f391e;
	width: 45%;
}
.manual_sec_top h3 {
	font-family: 'Arial';
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
}
.manual_sec_mobile p {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: normal;
	padding: 3% 0 3%;
}
.manual_sec_mobile form h3 {
	font-family: 'Arial';
	font-size: 14px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
}
.manual_sec_mobile form table label {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
}
.manual_sec_mobile form table select {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
	height: 30px;
}
.manual_sec_mobile form table tr td a {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
	height: 30px;
	text-decoration: underline;
}
.manual_sec_mobile form table tr td img {
	margin-top: 1%;
}
.product_sec_inner {
    float: left;
    margin-left: 0%;
    width: 100%;
    height: auto;
	margin-bottom:22%;
}
.property_detail_inner {
    width: 70%;
    height: auto;
    float: left;
    padding-bottom: 10%;
}
.property_detail_inner_middle {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 10%;
}
.property_detail_inner_most_features_upper {
    width: 100%;
    margin: 0px auto;
}
.price_quantity {
    height: 40px;
    width: 100%;
    background-color: #D0CCCC;
    margin-top: 17%;
    padding-left: 5%;
}

.signinform form {
    width: 100%;
}
.signinform form table{
    width: 100%;
}
.signinform form table tr td input[type="email"], .signinform form table tr td input[type="password"], .signinform form table tr td input[type="text"], .forgotform form table tr td input[type="email"] {
    font-family: "Arial";
    font-size: 14px;
    width: 239px;
    height: 33px;
    border: 1px solid #CCC;
    outline: medium none;
    padding: 0px 10px;
}
/***************************************
		Blog Us
***************************************/
.blogMain {
    width: 100%;
    margin: 0px 0px 70px;
    padding-top: 16px;
}
/***************************************
		Contact Us
***************************************/

.contact_form_left h2 {
    font-family: "Arial";
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
    padding: 3.5% 0px;
    width: 45%;
    text-align: center;
    background-color: #1F391E;
}
.contact_form_left {
    width: 100%;
    float: left;
    padding: 5% 0px;
}
.contact_form_right {
    width: 100%;
    padding: 10.5% 0px;
    float: left;
}
.footer_bottom ul li a {
    font-size: 11px;
    font-family: "Lato",sans-serif;
    font-weight: bold;
    color: #4A4A4A;
    text-decoration: none;
}

}



@media only screen and (min-device-width : 360px) and (max-device-width : 640px) and (orientation : landscape) {
/***************************************
		Mobile Menu
***************************************/
@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot');
	src:url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon.woff') format('woff'),
		url('../fonts/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
.dl-menuwrapper {
	width: 100%;
	float: left;
	position: relative;
	z-index:9999;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}

.dl-menuwrapper:first-child {
	margin-right: 100px;
}

.dl-menuwrapper button {
	background: #1F391E ;
	border: none;
	width: 48px;
	height: 43px;
	text-indent: -900em;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
	background: #1F391E ;
}

.dl-menuwrapper button:after {
	content: '';
	position: absolute;
	width: 68%;
	height: 5px;
	background: #fff;
	top: 10px;
	left: 16%;
	box-shadow: 
		0 10px 0 #fff, 
		0 20px 0 #fff;
}

.dl-menuwrapper ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dl-menuwrapper li {
	position: relative;
	border-bottom:1px solid #FFF;
}

.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 6px 18px;
    font-size: 12px;
    line-height: 20px;
    color: #FFF;
    outline: medium none;
    text-decoration: none;
}

.no-touch .dl-menuwrapper li a:hover {
	background: rgba(255,248,213,0.1);
}

.dl-menuwrapper li.dl-back > a {
	padding-left: 30px;
	background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 30px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
	color:#fff;
}

.dl-menuwrapper li.dl-back:after {
	left: 10px;
	color: #fff;
	font-size: 12px;
}

.dl-menuwrapper li > a:after {
	right: 10px;
	color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
	margin: 5px 0 0 0;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
	display: none;
}

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
	display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
	display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
	position: absolute;
	width: 100%;
	top: 50px;
	left: 0;
	margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
	-webkit-animation: MenuAnimOut2 0.3s ease-in-out;
	animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
	-webkit-animation: MenuAnimOut3 0.4s ease;
	animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
	-webkit-animation: MenuAnimOut4 0.4s ease;
	animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
	-webkit-animation: MenuAnimOut5 0.4s ease;
	animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
}

.dl-menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
	-webkit-animation: MenuAnimIn2 0.3s ease-in-out;
	animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
	-webkit-animation: MenuAnimIn3 0.4s ease;
	animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
	-webkit-animation: MenuAnimIn4 0.4s ease;
	animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
	-webkit-animation: MenuAnimIn5 0.4s ease;
	animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
	-webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
	animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
	-webkit-animation: SubMenuAnimIn3 0.4s ease;
	animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
	-webkit-animation: SubMenuAnimIn4 0.4s ease;
	animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
	-webkit-animation: SubMenuAnimIn5 0.4s ease;
	animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
	-webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
	animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
	-webkit-animation: SubMenuAnimOut3 0.4s ease;
	animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
	-webkit-animation: SubMenuAnimOut4 0.4s ease;
	animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
	-webkit-animation: SubMenuAnimOut5 0.4s ease;
	animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
	display: block;
}

.no-js .dl-menuwrapper li.dl-back {
	display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
	content: '';
}

/* Colors for demos */

/* Demo 1 */
.demo-1 .dl-menuwrapper button {
	background: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
	background: #9e1847;
}

/***************************************
		Home Page
***************************************/
.container {
    width: 90%;
    margin: 0px auto;
}
.da-slider{
	display:none;	
}
.mobile_scroll{
	display:none;	
}
#menu1{
	display:none !important;	
}
.banner{
	height: 213px;
}
#dl-menu{
	display:block;

}
.mobile_banner{
	display:block !important;	
}
.cart ul {
    background-image: url("../images/shopping_cart.png");
    background-repeat: no-repeat;
    background-position: 10% 50%;
    float: right;
    padding-left: 30%;
}
.about_us {
    background-color: #EFEEEE;
    padding-top: 60% !important;
}
.banner_top .logo {
    width: 80%;
    float: left;
    margin: 4% 0px 1% 36%;
}
.banner_top .cart {
	width: 50%;
	float: left;
	margin-top: 5%;
	margin-left:15%;	
}
#masthead {
	height: auto;
	overflow: visible;
	width: 100%;
}
.sub_holder {
    max-width: 100%;
    margin: 0px auto 0px;
}
#masthead_overlay {
    position: relative;
    z-index: 2;
    top: 0px;
    margin-top: 0px;
    height: 249px;
    width: 100%;
    overflow: visible;
}
#masthead_overlay h1 {
    position: absolute;
    padding-top: 20px;
    font-family: "Lato",sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
#masthead_overlay h2 {
    margin-bottom: 28px;
    font-family: "Lato",sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #363839;
    padding-top: 0px;
}
#masthead_overlay p {
   display:none;
}
#masthead_overlay #sections li {
    list-style: outside none none;
    display: none;
    height: 215px;
    position: absolute;
    width: 100%;
    pointer-events: all;
}
.overview_img {
    position: absolute;
    right: 0px;
    bottom: -15px;
    width: 84%;
    margin-right: 13%;
    margin-bottom: 0px;
}
.overview_copy {
    position: absolute;
    width: 100%;
    color: #FFF;
    top: 70px;
}
.video img{
    width:100%;
}
.grid li {
    height: 183px;
    width: 30%;
    float: left;
    margin: 5% 0px 0px 3% !important;
    box-shadow: 3px 3px 5px #888;
}
/***************************************
		About US
***************************************/

.about_us {
    background-color: #EFEEEE;
	padding-top:8%;
}
.banner_img_abt{
	margin-bottom:0.5%;	
}
.about_us object {
    width: 50%;
    height: 200px;
    margin-left: 47.4%;
    margin-top: 2%;
}
.about_us object {
    display:none;
}

#tabs li, #tabs2 li, #tabs3 li, #tabs4 li, #tabs5 li {
    float: left;
    margin-right: 2px;
    list-style: outside none none;
	width:80%;
	border:1px solid #fff;
}
.social_icons {
    width: 100%;
    margin: 0px auto;
}

.installation_inner_top {
    width: 60%;
    margin: 0px auto;
    background-color: #1F391E;
    height: 45px;
}
.installation_inner {
    width: 100%;
    margin: 0px auto;
    padding-bottom: 5%;
}
.installtion_section h5 {
    font-family: "Arial";
    font-size: 14px;
    color: #1F391E;
    font-weight: bold;
    padding: 9% 0px 0px 0%;
}
.installtion_section h6 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: bold;
    padding: 2% 0px 10% 0%;
}
#tabs li,#tabs2 li,#tabs3 li,#tabs4 li,#tabs5 li {
	float: left;
	margin-right: 2px;
	list-style:none;
	width:100%;
}

#tabs-1 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}
#tabs-2 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}
#tabs-3 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}

.manual_sec_top {
    height: 30px;
    background-color: #1F391E;
    width: 32%;
}
.manual_sec{
	display:none;
}
.manual_sec_mobile{
	display:block;
	padding-bottom:5%;	
}
.manual_sec_mobile h2 {
	font-family: 'Arial';
	font-size: 14px;
	color: #1f391e;
	font-weight: bold;
	padding: 1% 0 3%;
}
.manual_sec_top {
	height: 30px;
	background-color: #1f391e;
	width: 45%;
}
.manual_sec_top h3 {
	font-family: 'Arial';
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
}
.manual_sec_mobile p {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: normal;
	padding: 3% 0 3%;
}
.manual_sec_mobile form h3 {
	font-family: 'Arial';
	font-size: 14px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
}
.manual_sec_mobile form table label {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
}
.manual_sec_mobile form table select {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
	height: 30px;
}
.manual_sec_mobile form table tr td a {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
	height: 30px;
	text-decoration: underline;
}
.manual_sec_mobile form table tr td img {
	margin-top: 1%;
}
.product_sec_inner {
    float: left;
    margin-left: 3%;
    width: 45%;
    height: auto;
    margin-bottom: 22%;
}
.property_detail_inner {
    width: 70%;
    height: auto;
    float: left;
    padding-bottom: 10%;
}
.property_detail_inner_middle {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 10%;
}
.property_detail_inner_most_features_upper {
    width: 100%;
    margin: 0px auto;
}
.price_quantity {
    height: 40px;
    width: 100%;
    background-color: #D0CCCC;
    margin-top: 17%;
    padding-left: 5%;
}

.signinform form {
    width: 100%;
}
.signinform form table{
    width: 100%;
}
.signinform form table tr td input[type="email"], .signinform form table tr td input[type="password"], .signinform form table tr td input[type="text"], .forgotform form table tr td input[type="email"] {
    font-family: "Arial";
    font-size: 14px;
    width: 239px;
    height: 33px;
    border: 1px solid #CCC;
    outline: medium none;
    padding: 0px 10px;
}
/***************************************
		Blog Us
***************************************/
.blogMain {
    width: 100%;
    margin: 0px 0px 70px;
    padding-top: 16px;
}
/***************************************
		Contact Us
***************************************/

.contact_form_left h2 {
    font-family: "Arial";
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
    padding: 3.5% 0px;
    width: 45%;
    text-align: center;
    background-color: #1F391E;
}
.contact_form_left {
    width: 100%;
    float: left;
    padding: 5% 0px;
}
.contact_form_right {
    width: 100%;
    padding: 10.5% 0px;
    float: left;
}
.footer_bottom ul li a {
    font-size: 11px;
    font-family: "Lato",sans-serif;
    font-weight: bold;
    color: #4A4A4A;
    text-decoration: none;
}
}



@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) {
/***************************************
		Mobile Menu
***************************************/
@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot');
	src:url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon.woff') format('woff'),
		url('../fonts/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
.dl-menuwrapper {
	width: 100%;
	float: left;
	position: relative;
	z-index:9999;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}

.dl-menuwrapper:first-child {
	margin-right: 100px;
}

.dl-menuwrapper button {
	background: #1F391E ;
	border: none;
	width: 48px;
	height: 45px;
	text-indent: -900em;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
	background: #1F391E ;
}

.dl-menuwrapper button:after {
	content: '';
	position: absolute;
	width: 68%;
	height: 5px;
	background: #fff;
	top: 10px;
	left: 16%;
	box-shadow: 
		0 10px 0 #fff, 
		0 20px 0 #fff;
}

.dl-menuwrapper ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dl-menuwrapper li {
	position: relative;
	border-bottom:1px solid #FFF;
}

.dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 6px 18px;
    font-size: 12px;
    line-height: 20px;
    color: #FFF;
    outline: medium none;
    text-decoration: none;
}

.no-touch .dl-menuwrapper li a:hover {
	background: rgba(255,248,213,0.1);
}

.dl-menuwrapper li.dl-back > a {
	padding-left: 30px;
	background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 30px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
	color:#fff;
}

.dl-menuwrapper li.dl-back:after {
	left: 10px;
	color: #fff;
	font-size: 12px;
}

.dl-menuwrapper li > a:after {
	right: 10px;
	color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
	margin: 5px 0 0 0;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
	display: none;
}

/* 
When a submenu is openend, we will hide all li siblings.
For that we give a class to the parent menu called "dl-subview".
We also hide the submenu link. 
The opened submenu will get the class "dl-subviewopen".
All this is done for any sub-level being entered.
*/
.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
	display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
	display: block;
}

/* Dynamically added submenu outside of the menu context */
.dl-menuwrapper > .dl-submenu {
	position: absolute;
	width: 100%;
	top: 50px;
	left: 0;
	margin: 0;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}

.dl-menu.dl-animate-out-2 {
	-webkit-animation: MenuAnimOut2 0.3s ease-in-out;
	animation: MenuAnimOut2 0.3s ease-in-out;
}

.dl-menu.dl-animate-out-3 {
	-webkit-animation: MenuAnimOut3 0.4s ease;
	animation: MenuAnimOut3 0.4s ease;
}

.dl-menu.dl-animate-out-4 {
	-webkit-animation: MenuAnimOut4 0.4s ease;
	animation: MenuAnimOut4 0.4s ease;
}

.dl-menu.dl-animate-out-5 {
	-webkit-animation: MenuAnimOut5 0.4s ease;
	animation: MenuAnimOut5 0.4s ease;
}

@-webkit-keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut1 {
	0% { }
	50% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
	}
	75% {
		-webkit-transform: translateZ(-372.5px) rotateY(15deg);
		transform: translateZ(-372.5px) rotateY(15deg);
		opacity: .5;
	}
	100% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
}

@keyframes MenuAnimOut2 {
	0% { }
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
}

@keyframes MenuAnimOut3 {
	0% { }
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut4 {
	0% { }
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes MenuAnimOut5 {
	0% { }
	100% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
}

.dl-menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}

.dl-menu.dl-animate-in-2 {
	-webkit-animation: MenuAnimIn2 0.3s ease-in-out;
	animation: MenuAnimIn2 0.3s ease-in-out;
}

.dl-menu.dl-animate-in-3 {
	-webkit-animation: MenuAnimIn3 0.4s ease;
	animation: MenuAnimIn3 0.4s ease;
}

.dl-menu.dl-animate-in-4 {
	-webkit-animation: MenuAnimIn4 0.4s ease;
	animation: MenuAnimIn4 0.4s ease;
}

.dl-menu.dl-animate-in-5 {
	-webkit-animation: MenuAnimIn5 0.4s ease;
	animation: MenuAnimIn5 0.4s ease;
}

@-webkit-keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		opacity: 1;
	}
}

@keyframes MenuAnimIn1 {
	0% {
		-webkit-transform: translateZ(-500px) rotateY(0deg);
		transform: translateZ(-500px) rotateY(0deg);
		opacity: 0;
	}
	20% {
		-webkit-transform: translateZ(-250px) rotateY(30deg);
		transform: translateZ(-250px) rotateY(30deg);
		opacity: 0.5;
	}
	100% {
		-webkit-transform: translateZ(0px) rotateY(0deg);
		transform: translateZ(0px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes MenuAnimIn2 {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes MenuAnimIn5 {
	0% {
		-webkit-transform: translateY(40%);
		transform: translateY(40%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	animation: SubMenuAnimIn1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
	-webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
	animation: SubMenuAnimIn2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
	-webkit-animation: SubMenuAnimIn3 0.4s ease;
	animation: SubMenuAnimIn3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
	-webkit-animation: SubMenuAnimIn4 0.4s ease;
	animation: SubMenuAnimIn4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
	-webkit-animation: SubMenuAnimIn5 0.4s ease;
	animation: SubMenuAnimIn5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
}

@-webkit-keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn1 {
	0% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn2 {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn3 {
	0% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn4 {
	0% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
}

@keyframes SubMenuAnimIn5 {
	0% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	animation: SubMenuAnimOut1 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
	-webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
	animation: SubMenuAnimOut2 0.3s ease-in-out;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
	-webkit-animation: SubMenuAnimOut3 0.4s ease;
	animation: SubMenuAnimOut3 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
	-webkit-animation: SubMenuAnimOut4 0.4s ease;
	animation: SubMenuAnimOut4 0.4s ease;
}

.dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
	-webkit-animation: SubMenuAnimOut5 0.4s ease;
	animation: SubMenuAnimOut5 0.4s ease;
}

@-webkit-keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		opacity: 0;
	}
}

@-webkit-keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut1 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut2 {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut3 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-300px);
		transform: translateZ(-300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut4 {
	0% {
		-webkit-transform: translateZ(0px);
		transform: translateZ(0px);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(300px);
		transform: translateZ(300px);
		opacity: 0;
	}
}

@keyframes SubMenuAnimOut5 {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateZ(-200px);
		transform: translateZ(-200px);
		opacity: 0;
	}
}

/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
	display: block;
}

.no-js .dl-menuwrapper li.dl-back {
	display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
	content: '';
}

/* Colors for demos */

/* Demo 1 */
.demo-1 .dl-menuwrapper button {
	background: #c62860;
}

.demo-1 .dl-menuwrapper button:hover,
.demo-1 .dl-menuwrapper button.dl-active,
.demo-1 .dl-menuwrapper ul {
	background: #9e1847;
}

/***************************************
		Home Page
***************************************/
.container {
    width: 90%;
    margin: 0px auto;
}
.da-slider{
	display:none;	
}
.mobile_scroll{
	display:none;	
}
#menu1{
	display:none !important;	
}
.banner{
	height:184px;	
}
#dl-menu{
	display:block;

}
.mobile_banner{
	display:block !important;	
}
.cart ul {
    background-image: url("../images/shopping_cart.png");
    background-repeat: no-repeat;
    background-position: 10% 50%;
    float: right;
    padding-left: 30%;
}
.about_us {
    background-color: #EFEEEE;
    padding-top: 60% !important;
}
.banner_top .logo {
    width: 80%;
    float: left;
    margin: 4% 0 1% 20%;
}
.banner_top .cart {
	width: 50%;
	float: left;
	margin-top: 5%;
	margin-left:15%;	
}
#masthead {
	height: auto;
	overflow: visible;
	width: 100%;
}
.sub_holder {
    max-width: 100%;
    margin: 0px auto 0px;
}
#masthead_overlay {
    position: relative;
    z-index: 2;
    top: 0px;
    margin-top: 0px;
    height: 249px;
    width: 100%;
    overflow: visible;
}
#masthead_overlay h1 {
    position: absolute;
    padding-top: 20px;
    font-family: "Lato",sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
#masthead_overlay h2 {
    margin-bottom: 28px;
    font-family: "Lato",sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #363839;
    padding-top: 0px;
}
#masthead_overlay p {
   display:none;
}
#masthead_overlay #sections li {
    list-style: outside none none;
    display: none;
    height: 215px;
    position: absolute;
    width: 100%;
    pointer-events: all;
}
.overview_img {
    position: absolute;
    right: 0px;
    bottom: -15px;
    width: 84%;
    margin-right: 13%;
    margin-bottom: 0px;
}
.overview_copy {
    position: absolute;
    width: 100%;
    color: #FFF;
    top: 70px;
}
.video img{
    width:100%;
}
.grid li {
    height: 183px;
    width: 30%;
    float: left;
    margin: 5% 0px 0px 0% !important;
    box-shadow: 3px 3px 5px #888;
}
/***************************************
		About US
***************************************/

.about_us {
    background-color: #EFEEEE;
	padding-top:8%;
}
.banner_img_abt{
	margin-bottom:0.5%;	
}
.about_us object {
    width: 50%;
    height: 200px;
    margin-left: 47.4%;
    margin-top: 2%;
}
.about_us object {
    display:none;
}

#tabs li, #tabs2 li, #tabs3 li, #tabs4 li, #tabs5 li {
    float: left;
    margin-right: 2px;
    list-style: outside none none;
	width:80%;
	border:1px solid #fff;
}
.social_icons {
    width: 100%;
    margin: 0px auto;
}

.installation_inner_top {
    width: 60%;
    margin: 0px auto;
    background-color: #1F391E;
    height: 45px;
}
.installation_inner {
    width: 100%;
    margin: 0px auto;
    padding-bottom: 5%;
}
.installtion_section h5 {
    font-family: "Arial";
    font-size: 14px;
    color: #1F391E;
    font-weight: bold;
    padding: 9% 0px 0px 0%;
}
.installtion_section h6 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: bold;
    padding: 2% 0px 10% 0%;
}
#tabs li,#tabs2 li,#tabs3 li,#tabs4 li,#tabs5 li {
	float: left;
	margin-right: 2px;
	list-style:none;
	width:100%;
}

#tabs-1 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}
#tabs-2 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}
#tabs-3 h3 {
    font-family: "Arial";
    font-size: 12px;
    color: #1F391E;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    background-image: url("../images/bullet.png");
    background-repeat: no-repeat;
    background-position: 0px 50%;
    padding-left: 6%;
}

.manual_sec_top {
    height: 30px;
    background-color: #1F391E;
    width: 32%;
}
.manual_sec{
	display:none;
}
.manual_sec_mobile{
	display:block;
	padding-bottom:5%;	
}
.manual_sec_mobile h2 {
	font-family: 'Arial';
	font-size: 14px;
	color: #1f391e;
	font-weight: bold;
	padding: 1% 0 3%;
}
.manual_sec_top {
	height: 30px;
	background-color: #1f391e;
	width: 45%;
}
.manual_sec_top h3 {
	font-family: 'Arial';
	font-size: 14px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 30px;
}
.manual_sec_mobile p {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: normal;
	padding: 3% 0 3%;
}
.manual_sec_mobile form h3 {
	font-family: 'Arial';
	font-size: 14px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
}
.manual_sec_mobile form table label {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
}
.manual_sec_mobile form table select {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
	height: 30px;
}
.manual_sec_mobile form table tr td a {
	font-family: 'Arial';
	font-size: 12px;
	color: #1f391e;
	font-weight: bold;
	line-height: 30px;
	height: 30px;
	text-decoration: underline;
}
.manual_sec_mobile form table tr td img {
	margin-top: 1%;
}
.product_sec_inner {
    float: left;
    margin-left: 0%;
    width: 100%;
    height: auto;
	margin-bottom:22%;
}
.property_detail_inner {
    width: 70%;
    height: auto;
    float: left;
    padding-bottom: 10%;
}
.property_detail_inner_middle {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 10%;
}
.property_detail_inner_most_features_upper {
    width: 100%;
    margin: 0px auto;
}
.price_quantity {
    height: 40px;
    width: 100%;
    background-color: #D0CCCC;
    margin-top: 17%;
    padding-left: 5%;
}

.signinform form {
    width: 100%;
}
.signinform form table{
    width: 100%;
}
.signinform form table tr td input[type="email"], .signinform form table tr td input[type="password"], .signinform form table tr td input[type="text"], .forgotform form table tr td input[type="email"] {
    font-family: "Arial";
    font-size: 14px;
    width: 239px;
    height: 33px;
    border: 1px solid #CCC;
    outline: medium none;
    padding: 0px 10px;
}
/***************************************
		Blog Us
***************************************/
.blogMain {
    width: 100%;
    margin: 0px 0px 70px;
    padding-top: 16px;
}
/***************************************
		Contact Us
***************************************/

.contact_form_left h2 {
    font-family: "Arial";
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
    padding: 3.5% 0px;
    width: 45%;
    text-align: center;
    background-color: #1F391E;
}
.contact_form_left {
    width: 100%;
    float: left;
    padding: 5% 0px;
}
.contact_form_right {
    width: 100%;
    padding: 10.5% 0px;
    float: left;
}
.footer_bottom ul li a {
    font-size: 11px;
    font-family: "Lato",sans-serif;
    font-weight: bold;
    color: #4A4A4A;
    text-decoration: none;
}
}


