* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

/* Header/Blog Title */
.header {
  padding: 10px;
  text-align: center;
  background: #191970;
  color: #FFFFFF;
}

.header h1 {
  font-size: 50px;
}

.left {
  padding: 20px;
  float: left;
  width: 25%; /* The width is 20%, by default */
}

.main {
  padding: 20px;
  float: left;
  width: 55%; /* The width is 60%, by default */
}

.right {
  padding: 20px;
  float: left;
  width: 20%; /* The width is 20%, by default */
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

.midRightInnerBox {
	float: left;
	height: auto;
	width: 100%;
	background-color: #e5e5e5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	}
.midRightInnerBoxTitel {
	font-family: OpenSans;
	font-size: 13px;
	color: #626262;
	float: left;
	height: auto;
	width: 80%;
	margin-top: 20px;
	margin-left: 20px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b8b8b8;
	}
.foumBox {
	padding: 0px;
	float: left;
	height: auto;
	width: 100%;
	margin-left: 20px;
	margin-top: 10px;
	}
.foumBoxTitel {
	font-family: OpenSans;
	font-size: 13px;
	color: #626262;
	padding: 0px;
	float: left;
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	}				
.foumField {
	margin: 0px;
	padding: 0px;
	float: left;
	height: auto;
	width: 100%;
	}
	
.foumField input {
	font-family: OpenSans;
	font-size: 13px;
	color: #626262;
	-webkit-box-shadow: inset 0px 0px 15px -7px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 0px 15px -7px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 15px -7px rgba(0,0,0,0.75);
	margin: 0px;
	float: left;
	height: 40px;
	width: 80%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	border: 1px solid #cfcfcf;
}
.buttonBox a {
	font-family: OpenSans;
	font-size: 14px;
	color: #FFFFFF;
	background-color:#92495C;
	/*#800517;*/

	float: left;
	height: 35px;
	width: 90px;
	margin-left: 20px;
	line-height: 35px;
	text-align: center;
	margin-top: 5px;
	text-transform: uppercase;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	}
        

.sumit-button {
	font-family: OpenSans;
	font-size: 14px;
	color: #FFFFFF;
	background-color:#92495C;
	/*#800517;*/

	float: left;
	height: 35px;
	width: 90px;
	margin-left: 20px;
	line-height: 35px;
	text-align: center;
	margin-top: 5px;
	text-transform: uppercase;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
        border: 0px;
	}

.buttonBox a:hover {
	font-family: OpenSans;
	font-size: 14px;
	color: #000000;
	line-height: 35px;
	text-transform: uppercase;
	text-decoration: none;
	}		
	
	
.midLinkText {
	font-family: OpenSans;
	font-size: 11px;
	color: #626262;
	float: left;
	height: auto;
	width: 100%;
	margin-top: 10px;
	margin-left: 20px;
	margin-bottom: 20px;
	font-weight: 500;
	}
.midLinkText a {
	font-family: OpenSans;
	font-size: 11px;
	color: #626262;
	font-weight: 500;
	text-decoration: none;
	}
.midLinkText a:hover {
	font-family: OpenSans;
	font-size: 11px;
	color: #000000;
	font-weight: 500;
	text-decoration: none;
	}	
.footerOutBox {
    background-color:#008B8B;
	margin: 0px;
	padding: 0px;
	float: left;
	height: 45px;
	width: 100%;
}

.footerText {
	font-family: OpenSans;
	font-size: 12px;
	color: #FFFFFF;
	text-align: center;
	font-weight: 500;
	padding: 0px;
	height: auto;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	line-height: 45px;
	}
/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}