@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	color: #fff;

}
.leftcontent {
	clear: right;
	float: left;
}
h1, h2, h3, h5, h6, p {
	margin-top: 0px;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: Arial;
	line-height: 36px;
	color: #999999;
}
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;
}

.container {
	width: 1360px;
	max-width: 1350px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 1350px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color: #FFF; /* 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%. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.anim {
	clear: right;
	float: left;
	width: 600px;
}
.leftcontent {
	clear: right;
	float: left;
	width: 500px;
}

/* ~~ 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 {
	background-color: #ffffff;
	background-image: url(newIndexIMG/newHeader.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100px;
	font-family: Arial;
	font-size: 14px;
	font-style: italic;
	font-weight: normal;
	color: #0FF;
	text-align: right;
	alignment-baseline: middle;
	width: 1350px;
}

.sidebar1 {
	float: left;
	width: 235px;
	background-color: #ffffff;
	background-image: url(newIndexIMG/leftColubm.jpg);
	background-repeat: no-repeat;
	height: 625px;
	padding: 0px;
	font-family: Arial;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	color: #999;
	text-align: center;
	clear: right;
}
.content {
	padding: 0px;
	width: 1100px;
	height: 625px;
	float: left;
	background-image: url(newIndexIMG/containerBG.jpg);
	background-repeat: no-repeat;
	background-position: top;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}
.content:hover {
	background-image: url(newIndexIMG/NewcontainerBG.jpg);
	background-repeat: no-repeat;
	background-position: top;
}

.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	width: 100%;
	margin-top: 20px;
}

/* ~~miscellaneous float/clear classes~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.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:0;
	font-size: 1px;
	line-height: 0px;
}
  .mainDes {
	border-bottom-right-radius: 10px;
	border: 1px solid #FFF;
	border-top-right-radius: 10px;
	background-color: rgba(255,255,255,0.60);
	margin-bottom: 10px;
	padding-left: 10px;
}
  .mainH {
	color: rgba(252,0,47,1.00);
	font-family: "Segoe Print";
	font-style: normal;
	font-size: 18px;
	font-weight: normal;
	text-align: left;
	  }
  .mainP {
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	color: rgba(88,88,88,1.0);
	text-align: justify;
	line-height: 14px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	opacity: 0.2;
	-webkit-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	  }
  .footerDes {
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #333;
	text-align: left;
	background-color: #FFF;
	padding: 10px;
	float: left;
	width: 18%;
	margin-top: 0px;
	line-height: 16px;
	height: 150px;
	-webkit-transition: background-color 1s ease-out;
	-moz-transition: background-color 1s ease-out;
	-ms-transition: background-color 1s ease-out;
	-o-transition: background-color 1s ease-out;
	transition: background-color 1s ease-out;
	border: 1px solid #FFF;
	border-radius: 10px;
}
ul.nav {
	list-style: none; /* this removes the list marker */

	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #333; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: inline; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #06F;
}
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #F03;
	text-decoration: none;
}
.footerDes:hover {
	background-color: #FF6C86;
}
img.floatRight { 
    float: right; 
    margin: 10px; 
}
img.floatLeft { 
    float: left; 
    margin: 10px; 
}
a:active {
	text-decoration: none;
}
.mainP:hover {
	-webkit-opacity: 1.0;
	opacity: 1.0;
}
