@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
	background-color: white;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	color: #000;
}

h6 { font-size: 0.8em; }
h5 { font-size: 1.5em; }
h4 { font-size: 1em; }
h3 { font-size: 2em; }
h2 { font-size: 3em; }
h1 { font-size: 4em; }

.p {
	text-align:justify;
	text-indent: 0px;
	font-size: 0.9em;
	list-style-type: none;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #414958;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification #414958; */
}

a:visited {
	color: #414958;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
.displayed {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	margin-bottom: auto;
}

.error {
	color: red ;
}
	
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.sentenlise {
    text-transform: sentencase;
}

.centerDiv {
    margin: 0 auto;
}
.centerText {
	text-align:center;
}
.white {
	color: white;	
}
.black {
	color: black;	
}
.red {
	color: red;	
}
.blue {
	color: blue;	
}

.green {
	color:green;	
}

.brown {
	color: brown;	
}

.biege {
	color: #900;	
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	height: 150px;
	width: 100%;
	padding-top: 30px;
	background-color:white;
	position: relative ;
	z-index: 11;
	background-color: ;
}

.companyLogo {
   	position: absolute;
   	left: 80px;
   	top: 20px;
}

.socials {	
   	position: absolute;
   	right: 50px;
   	top: 20px;	 
}

.socialsItems {  
	margin-right: 20px;
	float:left ;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in; 
}

.socialsItems:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2); 
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

.container {
	width: 1200px;
	height: auto;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	background-color:;	
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:1px;
	line-height: 0px;
	width: 1400px;
}

.footer {
	height: 170px;
	width: 100%;
	text-decoration: none;
	padding-top: 20px;
	color: #900;
	background-color: #090;
}
.footer a {
	text-decoration: none;
	color: #FC0;
	font-weight: normal;
}
.footer a:hover {
	font-weight: bold;
	color: white;
}

/* Start Enlarge on Hover */
.parent {
	width: 100%; 
	height:250px;
	background-color:;
  	position:relative;  
    overflow: hidden;
    position: relative;
	padding-top:1px;
  	padding-bottom:2px;
}

.child {
  width: 100%;
  height: 100%;
 
  -webkit-transition: all .5s ease-in;
  -moz-transition: all .5s ease-in;
  -o-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.parent:hover .child,
.parent:focus .child {  
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3); 
    -moz-transform: scale(1.3);
    transform: scale(1.3);
}
/* End Enlarge on Hover */


.webChat {
	float: left;
	margin-top: 60px;
	background-image: url(../images/webChat1.jpg);
	background-repeat: no-repeat;
	margin-left: 60px;
	height: 67px;
	width: 120px;
}
.wrapTxtR{
	float: right;
	margin-left: 10px;
}
.wrapTxtL {
	float: left;
	margin-right: 10px;
}
.webChat:hover {
	float: left;
	margin-top: 60px;
	background-image: url(../images/webChat2.jpg);
	background-repeat: no-repeat;
	margin-left: 60px;
	height: 67px;
	width: 120px;
}

/* Start tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* End tooltip */


/* Start gradientDiv */
.gradientDiv {
  background-color: red;

  /* SVG fallback for IE 9 (could be data URI, or could use filter) */
  /* Safari 4, Chrome 1-9, iOS 3.2-4.3, Android 2.1-3.0 */
    -webkit-gradient(linear, left top, right top, from(red), to(#f06d06));
  
  /* Safari 5.1, iOS 5.0-6.1, Chrome 10-25, Android 4.0-4.3 */
    -webkit-linear-gradient(left, red, #f06d06);

  /* Firefox 3.6 - 15 */
    -moz-linear-gradient(left, red, #f06d06);

  /* Opera 11.1 - 12 */
    -o-linear-gradient(left, red, #f06d06);

  /* Opera 15+, Chrome 25+, IE 10+, Firefox 16+, Safari 6.1+, iOS 7+, Android 4.4+ */
    linear-gradient(to right, red, #f06d06);

}


/* Start fadeInFadeOut */
.fadeInFadeOut {
   -webkit-animation: fadeInFadeOut 10s ;
   -moz-animation: fadeInFadeOut 10s ;
   -o-animation: fadeInFadeOut 10s ;
    animation: fadeInFadeOut 10s ;
}

@keyframes fadeInFadeOut {
  0%   { opacity: 0; }
  30%  { opacity:1; }
  70%  { opacity:1; }
  100% { opacity: 0.1; }
}
@-o-keyframes fadeInFadeOut {
  0%   { opacity: 0; }
  30%  { opacity:1; }
  70%  { opacity:1; }
  100% { opacity: 0.1; }
}
@-moz-keyframes fadeInFadeOut {
  0%   { opacity: 0; }
  30%  { opacity:1; }
  70%  { opacity:1; }
  100% { opacity: 0.1; }
}
@-webkit-keyframes fadeInFadeOut {
  0%   { opacity: 0; }
  30%  { opacity:1; }
  70%  { opacity:1; }
  100% { opacity: 0.1; }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 10s;
  
  -moz-animation-name: fadeIn;
  -moz-animation-duration: 10s;
  
  -o-animation-name: fadeIn;
  -o-animation-duration: 10s;

  animation-name: fadeIn;
  animation-duration: 10s; 
}

/* Go from zero to full opacity */
@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}
@-o-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}
@-moz-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}
@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  -webkit-animation-duration: 10s;
  
  -moz-animation-name: fadeOut;
  -moz-animation-duration: 10s;
  
  -o-animation-name: fadeOut;
  -o-animation-duration: 10s;

  animation-name: fadeOut;
  animation-duration: 10s; 
}

/* Go from zero to full opacity */
@keyframes fadeOut {
  from {opacity: 1} 
  to {opacity: 0}
}
@-o-keyframes fadeOut {
  from {opacity: 1} 
  to {opacity: 0}
}
@-moz-keyframes fadeOut {
  from {opacity: 1} 
  to {opacity: 0}
}
@-webkit-keyframes fadeOut {
  from {opacity: 1} 
  to {opacity: 0}
}

