/* CSS Document */
/* All comments go between the front slash and asterisk symbols */

body {
	background-color:#5E78F1;   /* background color */
	color: #444;          /* text color for the entire page */
	font-size: 12px;
	font-family: Tahoma, Geneva, sans-serif;
}

h1, h2 { 
	text-align:left;     /* centers h1 and h2 content */
	color:#103E02;
}

/* styles for the "wrapper" div, notice that "wrapper" is preceded by "#" */
#wrapper {
	width:900px;
	margin:0 auto;    /* centers wrapper */
}

/* styles for the "stepTitle" class, notice that "stepTitle" is preceded by a dot */
.stepTitle{
	padding:6px;
	text-align:left;
	font-size:16px;
	background-color:#F7B857
 }

.stepContent{ 
	background-color: white;
	padding:7px;
}

.stepDescription {
	float:left;
	width:55%;
	padding:5px;
}

.stepImage {
	float:left;
	width:40%;	
	padding:5px;
	text-align: center;
}

img { 
border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}


