/**
 * Add border box sizing in all browsers to remove inconsistency .
 * Added by Azad
 */
 *,
 ::before,
 ::after {
   box-sizing: border-box;
 }
/**
 * 1. Add text decoration inheritance in all browsers to remove inconsistency.
 * 2. Add vertical alignment inheritance in all browsers to remove inconsistency.
 * Added by Azad
 */
 ::before,  
 ::after {
   text-decoration: inherit; 
   vertical-align: inherit; 
 }
 /**
 * 1. Use the default cursor in all browsers .
 * 2. Change the line height in all browsers .
 * 3. Use a 4-space tab width in all browsers .
 * 4. Remove the grey highlight on links in iOS .
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers .
 */

 /**
 *Added by Azad
 */

 html {
   cursor: default; 
   line-height: 1.5; 
   -moz-tab-size: 4; 
   tab-size: 4; 
   -webkit-tap-highlight-color: transparent ;
   -ms-text-size-adjust: 100%; 
   -webkit-text-size-adjust: 100%; 
   word-break: break-word; 
 }
body
{
	margin: 0;
	padding: 0;
	font-family: 'Helvetica',sans-serif;
}


a
{
	color: #0c4c7c;
}

a:hover {
  text-decoration: underline !important; 
}
/**
 * Remove the border on images within links in IE 10-.
 */
 /**
 *Added by Azad
 */
 img {
	border-style: none;
  }


.page-section
{
	margin-bottom: 20px;
}





#context-announcement {
	background-color: #D75453;
	/*padding: 5.6px 15px 5.6px 15px;*/
	border-radius: 5px;
	padding: 15px 0px 10px 0px;
	text-align:center;
	color: #fff;
}
.announcement-content {
	font-weight: normal;
	margin:25px 0px;
	font-size: 25px;
	line-height: 35px;
	
}
.announcement-title {
	background-color: #C02221; 
	font-weight: normal;
   margin:0px;
   font-size: 28px;
	line-height: 48px;
	font-weight: 600;
   padding-top: 5px;
   padding-bottom: 5px;
}
