/*css reset*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption, tbody, tfoot, thead, th,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/*end css reset*/


/*my css*/


h2 {
	font-size: 28px;
	line-height: 32px;
	font-family: arial;	
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
}

h3 {
	font-size: 24px;
	line-height: 28px;
	font-family: arial;
	margin-top: 10px;
	margin-bottom: 10px;	
}


.headerbg {
	background-image: url(/images2/headerbg.jpg);
	background-repeat: repeat-x;
	height: 312px;
} 

.headerbg img {
	margin: auto;
}

.bodybg {
	background-color: #faebd6;
}
.body {
	width: 1100px;
	background-color: #eee;
	margin: auto;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);		
}

.footerbg {
	background-image: url(/images2/footerbg.jpg);
	background-repeat: repeat-x;
	height: 206px;
}

.footerbg img {		
	padding-top: 45px;
	padding-bottom: 10px;
}

.text-red {
	color: #b50004;
}

.text-italic {
	font-style: italic;
	color: #555555;
	text-align: center;
}

.text-white {
	color: #fff;
	width: 1000px;
	margin: auto;
}

.footer-note {
	line-height: 18px;
	font-size : 12px;
	padding-top: 50px;
	text-align: center;
}
.small-text {
	line-height: 18px;
	font-size : 12px;
}
.rndcorner{
 border:#52382d 1px solid;
 border-radius: 15px;
padding:8px 8px 8px 8px;
 -moz-border-radius: 15px;
 -webkit-border-radius: 15px; 
 }


.feature{ 
    -webkit-transform: scale(1.1); 
    transform: scale(1.1); 
    box-shadow: 3px 5px 7px rgba(0,0,0,.7); 
} 

.pulse{
	animation-name: pulse;
	-webkit-animation-name: pulse;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 1;		
	}
	50% {
		transform: scale(1);
		opacity: 1;	
	}	
	100% {
		transform: scale(0.9);
		opacity: 1;	
	}			
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		opacity: 1;		
	}
	50% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(0.95);
		opacity: 1;	
	}			
}
