body
{
	border-top: 5px solid #e7a827;
	font-family: 'Ubuntu', sans-serif;
}
a
{
	text-decoration: none;
}
.header
{
	background-image: url('../images/header_back.png');
	background-size: cover;
	min-height: 130px;
}
.header .header_logo
{
	padding: 20px 30px;
	vertical-align: middle;
	font-family: 'Roboto', sans-serif;
}
.header .header_logo img
{
	float: left;
	margin-right: 15px;
}
.header .header_logo h2
{
	margin-top: 20px;
	color: #20409a;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 24px;
}
.header .header_logo h2 span
{
	color: #e5a319;
}

.header .header_ul
{
	float: right;
}
.header .header_ul li
{
	float: left;
	padding: 25px 5px;
	font-family: 'Ubuntu', sans-serif;
	text-transform: uppercase;
	color: #565656;
	font-size: 11px;
}
.header .header_ul li:last-child
{
	display: none;
}
.header .header_ul li a
{
	color: #565656;
	font-size: 11px;
}

/* ----------------------------- Menu ---------------------------------- */
.menu_container
{
	background: #20409a; /* Old browsers */
	background: -moz-linear-gradient(top,  #20409a 0%, #09205f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#20409a), color-stop(100%,#09205f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #20409a 0%,#09205f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #20409a 0%,#09205f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #20409a 0%,#09205f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #20409a 0%,#09205f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#20409a', endColorstr='#09205f',GradientType=0 ); /* IE6-9 */
	height: 48px;
	border-bottom: 5px solid #e5a319;
	z-index: 10000;
}
.menu_fixed
{
	position: fixed;
	top: 0px;
	width: 100%;
}
.menu
{
	font-size: 13px;
	font-weight: 300;
	font-family: 'Ubuntu', sans-serif;
	text-transform: uppercase;
}
.menu li
{
	float: left;
	margin-right: -20px;
}
.menu li a span
{
	float: left;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	height: 30px;
	padding-top: 18px;
}
.menu li:last-child a span
{
	color: #FFF633;
	font-weight: bold;
	animation: blinker 1s linear infinite;
}
.menu li:last-child a.active span
{
	color: #fff;
	font-weight: bold;
	animation: none;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 200px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -5px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 10px 16px;
  background-color: #20409a;
  color: white;
}

.modal-body {padding: 2px 16px;}
.modal-body img {max-width: 100%;height: auto;}
.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
.menu li:last-child:hover a span
{
	color:#fff;
	animation: none;
}
.menu li a i.menu_left
{
	display: block;
	height: 48px;
	width: 20px;
	float: left;
}
.menu li a i.menu_right
{
	display: block;
	height: 48px;
	width: 20px;
	float: right;
}
.menu li:hover a span,
.menu li a.active span
{
	background-color: #e5a319;
}
.menu li:hover a i.menu_left,
.menu li a.active i.menu_left
{
	background-image: url('../images/menu_left_border.png');
}
.menu li:hover a i.menu_right,
.menu li a.active i.menu_right
{
	background-image: url('../images/menu_right_border.png');
}
.menu li:hover ul
{
	display: block;
}

.menu ul
{
	display: none;
	position: absolute;
	top: 48px;
	border-top: 5px solid #e5a319;
	background-color: rgba(11,35,100,0.9);
	z-index: 10000;
	visibility: visible;
	width: 270px;
}
.menu ul li
{
	float: none;
}
.menu ul li a
{
	padding: 15px 20px 15px 40px;
	font-weight: 300;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff !important;
	float: left;
	width: 210px;
	border-bottom: 1px solid #243c7d;
	background-image: url('../icons/drop_li_icon.png');
	background-repeat: no-repeat;
	background-position: 20px 50%;
	transition: background-color 0.2s ease-in-out;
}
.menu ul li a:hover
{
	background-color: #5e76b7;
}

.search
{
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 10px 0px;
}
.search input[type="text"]
{
	width: 200px;
	height: 25px;
	border: 1px solid #535f81;
	border-radius: 5px;
	outline: 0;
	padding-left: 15px;
}
.search input[type="image"]
{
	width: 25px;
	height: 25px;
	position: absolute;
	right: 5px;
	top: 12px;
}

/* ------------------------------ Marquee ------------------------------------- */
.marquee
{
	height: 20px;
	background-color: #f2f2f2;
	padding-top: 10px;
	visibility: hidden;
}
.marquee h4
{
	font-family: 'Ubuntu', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #0b2364;
	margin-left: 20px;
	float: left;
}
.marquee i.marquee_arrow
{
	width: 7px;
	height: 8px;
	display: block;
	background-image: url('../icons/marquee_arrow.png');
	float: left;
	margin-left: 13px;
	margin-right: 13px;
	margin-top: 1px;
}
.marquee marquee
{
	font-weight: 300;
	font-size: 12px;
	color: #424141;
	float: left;
	width: 80%;
}
.marquee a
{
	/*color: #424141;*/
	color: #ff0d0d;
}

/* ----------------------------------- HOME ------------------------------------ */
.home
{
	margin-top: 30px;
	margin-bottom: 30px;
}
.home_news
{
	padding: 20px;
	background-color: #fbfbfb;
	border-bottom: 1px solid #fff;
	float: left;
	width: calc(100% - 40px);
}
.home_news_even
{
	background-color: #f6f6f6 !important;
}
.home_news h2
{
	font-size: 14px;
	font-weight: bold;
	color: #122c76;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.home_news img
{
	width: 253px;
	height: 150px;
	border: 5px solid #d0d0d0;
	float: left;
	margin-right: 30px;
}
.home_news article
{
	font-size: 13px;
	font-weight: 300;
	color: #444444;
	line-height: 20px;
}

.home_faq
{
	padding: 15px 0px;
}
h3.title_h3
{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: #444444;
	line-height: 18px;
	text-transform: uppercase;
	font-weight: 500;
	border-bottom: 3px solid #e5a319;
	padding-bottom: 10px;
}
.home_faq ul li
{
	padding: 20px 0px;
	border-bottom: 1px solid #d3d3d3;
}
.home_faq ul li a
{
	font-size: 14px;
	color: #777777;
	line-height: 18px;
	transition: all 0.2s ease-in-out;
}
.home_faq ul li:hover a
{
	color:#e5a319;
}

.home_event
{
	padding: 15px 0px;
}
.home_event .event_slide
{
	background-color: #f5f5f5;
}
.home_event .event_slide h5
{
	font-size: 12px;
	font-weight: 500;
	color: #3d58a2;
	line-height: 18px;
	padding: 25px 30px;
}
.home_event .event_slide h5 a
{
	color: #3d58a2;
}
.home_event .event_slide p
{
	color: #575757;
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	padding: 25px 30px;
	float: left;
}
.home_event .event_slide .event_cant
{
	background-color: #e5e5e5;
	padding: 10px 30px;
	color: #575757;
	font-size: 11px;
	line-height: 18px;
	font-weight: 300;
	font-style: italic;
	vertical-align: middle;
	float: left;
	width: 100%;
}
.home_event .event_slide .event_cant i.calendar_icon
{
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url('../icons/calendar_icon.png');
	float: left;
}
.home_event .event_slide .event_cant i.location_icon
{
	display: inline-block;
	width: 13px;
	height: 19px;
	background-image: url('../icons/location_icon.png');
	float: left;
}
.home_event .event_slide .event_cant label
{
	margin-left: 10px;
}

.some_buttons .left_button
{
	margin: 6px 0px;
}
.some_buttons .left_button h3
{
	font-family:"monavantgarde";
	font-size: 12px;
	color: #d9e3ff;
	text-transform: uppercase;
	line-height: 15px;
}

.some_links
{
	margin-top: 30px;
}
.some_links h3.title_h3
{
	text-align: right;
	border-color: #132f7a;
}
.some_links ul li
{
	padding: 12px 7px;
	text-align: right;
	border-bottom: 1px solid #d3d3d3;
}
.some_links ul li a
{
	font-size: 12px;
	font-weight: 300;
	color: #575757;
	line-height: 18px;
}

/* ----------------------------------- MIDDLE ----------------------------------- */
.middle
{
	padding-bottom: 50px;
}
.middle_logos
{
	margin-bottom: 60px;
}
.middle_logos img
{
	padding: 15px 16px;
	border: 1px solid #dadada;
}
.middle_logos .owl-controls
{
	bottom: -20px !important;
	text-align: center !important;
}
.middle_logos .owl-theme .owl-controls .owl-page span
{
	width: 20px;
	height: 3px;
	border-radius: 0 !important;
	background-color: #d2d8df;
}

.middle_conference .middle_conference_body
{
	height: 300px;
	overflow-y: scroll; 
}
.middle_conference table
{
	width: 100%;
}

.middle_conference table th.th_1
{
	text-align: center;
	font-size: 11px;
	vertical-align: middle;
	background-color: #e8e8e8;
	text-transform: uppercase;
	padding: 8px 0px;
	font-weight: bold;
}
.middle_conference table th.th_2
{
	padding: 8px 0px;
	text-align: left;
	font-size: 11px;
	vertical-align: middle;
	padding-left: 20px;
	background-color: #f5f5f5;
	text-transform: uppercase;
	font-weight: bold;
}
.middle_conference table th.th_3,
.middle_conference table th.th_4
{
	padding: 8px 0px;
	text-align: center;
	font-size: 11px;
	vertical-align: middle;
	background-color: #f5f5f5;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	text-transform: uppercase;
	line-height: 16px;
	font-weight: bold;
}

.middle_conference table tr
{
	border-bottom: 1px solid #fff;
}
.middle_conference table td.td_grey
{
	background-color: #e8e8e8;
}
.middle_conference table td.td_white
{
	background-color: #fff;
}
.middle_conference table td.td_white_grey
{
	background-color: #f5f5f5;
}
.middle_conference table td.td_1
{
	text-align: center;
	height: 50px;
	vertical-align: middle;
}
.middle_conference table td.td_1 h2
{
	font-size: 18px;
	color: #1e3e96;
	line-height: 14px;
	font-family: 'Arimo', sans-serif;
}
.middle_conference table td.td_1 h5
{
	font-size: 11px;
	color: #444444;
	line-height: 14px;
	margin-top: 5px;
	font-family: 'Arimo', sans-serif;
}
.middle_conference table td.td_2
{
	padding: 20px;
	font-size: 13px;
	color: #444444;
	line-height: 18px;
	vertical-align: middle;
}
.middle_conference table td.td_3 
{
	text-align: center;
	vertical-align: middle;
}
.middle_conference table td.td_3 img
{
	margin-right: 10px;
}

.middle_ads h3.title_h3
{
	border-color: #3e57a1;
}
.middle_ads ul li
{
	padding: 20px 35px;
	border-bottom: 1px solid #d3d3d3;
}
.middle_ads ul li a
{
	font-size: 13px;
	color: #132f7a;
	line-height: 18px;
	font-weight: 400;
	font-style: italic;
	transition: color 0.2s ease-in-out;
}
.middle_ads ul li a:hover
{
	color: #8b7500;
}

/* --------------------------------- MAP ----------------------------------------- */
.map_container
{
	background-color: #fafafa;
}
.map .map_text
{
	position: absolute;
	top: 20px;
	right: 120px;
	font-size: 20px;
	text-transform: uppercase;
	color: #444;
	border-bottom: 3px solid #3e57a1;
	font-family: 'Roboto' 'sans-serif';
	padding: 10px 30px;
}
.map .dot
{
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	background-image: url('../images/map_dot.png');
	transition: all 0.3s ease-in-out;
	z-index: 10;
}
.map .dot:hover h4
{
	visibility: visible;
	opacity: 1;
	z-index: 100;
}
.map .dot:hover
{
	background-image: url('../images/map_hover.png');
	z-index: 100;
}
.map .dot h4
{
	visibility: hidden;
	opacity: 0;
	width: 80px;
	background-color: #fff;
	color: #454544;
	text-transform: uppercase;
	font-size: 11px;
	padding: 20px 25px;
	float: left;
	position: absolute;
	bottom: 32px;
	left: -20px;
	border: 1px solid #eaeaea;
	transition: all 0.3s ease-in-out;
	z-index: 10;
}
.map .dotted
{
	z-index: 1000;
}
.dot1{top: 170px;left: 70px;}
.dot2{top: 130px;left: 180px;}
.dot3{top: 250px;left: 160px;}
.dot4{top: 210px;left: 310px;}
.dot5{top: 340px;left: 300px;}
.dot6{top: 110px;left: 430px;}
.dot7{top: 240px;left: 480px;}
.dot8{top: 330px;left: 420px;}
.dot9{top: 180px;left: 550px;}
.dot10{top: 320px;left: 530px;}
.dot11{top: 480px;left: 590px;}
.dot12{top: 175px;left: 585px;}
.dot13{top: 120px;left: 630px;}
.dot14{top: 155px;left: 655px;}
.dot15{top: 260px;left: 650px;}
.dot16{top: 360px;left: 650px;}
.dot17{top: 310px;left: 740px;}
.dot18{top: 400px;left: 780px;}
.dot19{top: 230px;left: 800px;}
.dot20{top: 310px;left: 900px;}
.dot21{top: 220px;left: 940px;}
.dot22{top: 230px;left: 680px;}



/* ------------------------------------- FOOTER --------------------------------------- */
.footer
{
	border-top: 5px solid #e5a319;
	background: #09205f; /* Old browsers */
	background: -moz-linear-gradient(top,  #09205f 0%, #20409a 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#09205f), color-stop(100%,#20409a)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #09205f 0%,#20409a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #09205f 0%,#20409a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #09205f 0%,#20409a 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #09205f 0%,#20409a 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#09205f', endColorstr='#20409a',GradientType=0 ); /* IE6-9 */
	position: relative;
	padding-top: 35px;
}
.footer_hr
{
	position: absolute;
	width: 100%;
	top: 80px;
	border-bottom: 1px solid #243c7f;
}
h3.footer_title
{
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #e5a319;
	text-transform: uppercase;
	font-size: 18px;
	margin-bottom: 50px;
}
.footer ul li
{
	padding: 7px 0px;
}
.footer ul li a
{
	font-weight: 300;
	font-size: 13px;
	color: #b1c5fb;
}
.footer table tr td
{
	padding: 7px;
	font-weight: 300;
	font-size: 13px;
	color: #b1c5fb;
	vertical-align: top;
}

.footer_bottom
{
	border-top: 1px solid #2f4c9c;
	margin-top: 30px;
	text-align: right;
	font-family: 'Roboto', sans-serif;
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	color: #94adf3;
	padding: 15px 0px;
}


/* ----------------------------- BLOG -------------------------------------- */
.blog
{
	padding-top: 15px; 
	border-bottom: 5px solid #9d9d9d;
	float: left;
	width: 100%;
}
.blog h3.title_h3
{
	border-color: #9d9d9d;
}
.breadcrumb
{
	background-color: #f5f5f5;
	float: left;
	width: 100%;
	vertical-align: middle;
}
.breadcrumb img
{
	float: left;
	margin-right: 12px;
}
.breadcrumb h4
{
	font-size: 12px;
	color: #9d9d9d;
	font-weight: 300;
	text-transform: uppercase;
	margin-top: 8px;
	display: inline-block;
}
.breadcrumb h4 a
{
	color: #9d9d9d;
}
.blog .home_news h2
{
	color: #7d7d7d;
}
.home_news a.readmore
{
	background-image: url('../icons/more_back.png');
	color: #686868;
	font-weight: 500;
	font-size: 11px;
	text-transform: uppercase;
	background-repeat: no-repeat;
	padding-left: 15px;
	float: right;
	margin-top: 30px;
	transition: all 0.2s ease-in-out;
}
.home_news a.readmore:hover
{
	color: #122c76;
}
.blog .pagination
{
	background-color: #f5f5f5;
	text-align: center;
}
.blog .pagination li
{
	display: inline-block;
	padding: 10px 5px;
	font-size: 12;
	color: #9d9d9d;
}
.blog .pagination li.active
{
	color: #0e276d;
}
.blog .pagination li a
{
	color: #9d9d9d;
}
.blog .pagination li:last-child,
.blog .pagination li:first-child
{
	display: none;
}

.blog .salbar_title
{
	font-size: 12px;
	text-transform: uppercase;
	padding: 15px 0px;
	float: left;
	width: 100%;
	color: #132f7a;
	transition: all 0.2s ease-in-out;
	border-bottom: 1px dotted #9d9d9d;
}
.blog .salbar_title:hover
{
	color: #8b7500;
}

/* ----------------------------------- SINGLE -------------------------------------- */
.single
{
	padding: 15px 0px;
	border:none;
}
.single h2
{
	color: #3d58a2;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.single h5
{
	float: right;
	font-size: 12px;
	font-weight: 300;
	color: #8b8888;
	margin-top: 8px;
	padding: 1px 15px 10px 22px;
	background-image: url('../icons/watch_icon.png');
	background-repeat: no-repeat;
}
.single h6
{
	float: right;
	font-size: 12px;
	font-weight: 300;
	color: #8b8888;
	margin-top: 5px;
	padding: 4px 15px 10px 22px;
	background-image: url('../icons/location_icon.png');
	background-repeat: no-repeat;
}
.single_content
{
	color: #444444;
	line-height: 20px;
	font-weight: 300;
	font-size: 13px;
	margin-top: 30px;
}
.single_content a
{
	color: #20409a;
	transition: all 0.2s ease-in-out;
}
.single_content a:hover
{
	color: #e5a319;
}

.single_content strong,
.single_content b
{
	font-weight: bold;
}
.single_content table,
.single_content table td
{
	border-width: 1px;
}
.single_content table.table_css
{
	margin: 30px 0px;
}
.single_content table.table_css tr td
{
	padding: 8px 15px;
	font-size: 13px;
}
.single_content table.table_css tr:nth-child(even) {background: #EFEFEF}
.single_content table.table_css tr:nth-child(odd) {background: #FFF}

.single_content ol
{
	list-style: decimal;
	padding-left: 20px;
	line-height: 24px;
}
.single_content ul li
{
	list-style: inside;
	padding-left: 20px;
	line-height: 24px;
}

.single .other_faqs
{
	margin-top: 30px;
	padding-top: 20px;
	border-top: 5px solid #9d9d9d;
}
.single a.other_faq
{
	color: #20409a;
	font-size: 13px;
	font-weight: 300;
	line-height: 18px;
	margin-bottom: 20px;
	float: left;
	background-image: url('../icons/other_faq_list.png');
	background-repeat: no-repeat;
	background-position: 0px 40%;
	padding-left: 25px;
	width: 90%;
	transition: all 0.2s ease-in-out;
	border-bottom: 1px dotted #9d9d9d;
	padding-bottom: 5px;
}
.single a.other_faq:hover
{
	color: #797878;
}
.single .contact_text
{
	padding: 20px 30px;
}

/* --------------------------------- JOBS --------------------------------- */
.jobs
{
	padding: 15px 0px;
}
.jobs h3.title_h3
{
	border-color: #9d9d9d;
}
.jobs .jobs_filter
{
	margin-top: 30px;
	text-align: right;
}
.jobs .jobs_filter label
{
	color: #9d9d9d;
	font-size: 11px;
	font-weight: 300;
	text-transform: uppercase;
	margin-right: 15px;
}
.jobs .jobs_filter select
{
	width: 250px;
	height: 30px;
	padding-left: 20px;
	border-radius: 5px;
	border: 1px solid #cccaca;
	color: #9d9d9d;
}
.jobs table
{
	width: 100%;
	margin-top: 5px;
}
.jobs table thead
{
	background-color: #e5a319;
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	text-align: left;
}
.jobs table th
{
	padding: 20px 30px;
}
.jobs table td
{
	padding: 20px 30px;
	color: #444444;
	font-size: 13px;
}
.jobs table td a
{
	color: #444444;
}
.jobs table tbody tr
{
	border-bottom: 1px solid #fff;
}
.jobs table tbody tr:nth-child(even) {background: #e8e8e8}
.jobs table tbody tr:nth-child(odd) {background: #f5f5f5}


/* ------------------------------- Subscribe ---------------------------------- */
.subscribe
{
	margin: 30px 0px;
}
.subscribe form
{
	margin: 20px 0px;
}
.subscribe input[type="text"]
{
	margin-right: 0px;
	padding: 5px 10px;
}
.subscribe input[type="submit"]
{
	background-color: #132f7a;
	border: none;
	color: #fff;
	padding: 6px;
	width: 70px;
}
.subscribe span
{
	font-size: 12px;
	padding: 20px;
	color: #e5a319;
}
.subscribe h5
{
	font-size:12px;
	line-height:14px;
	color:#757575;
	font-weight:300;
	margin-top:15px;
}

/* --------------------------- FEEDBACK -----------------------*/
.feedback
{
	color: #444444;
	line-height: 20px;
	font-weight: 300;
	font-size: 13px;
	margin-top: 30px;
}
.feedback label
{
	font-weight: bold;
}
.feedback input[type="text"]
{
	width: 260px;
	padding: 5px 20px;
	height: 25px;
	margin-bottom: 20px;
}
.feedback textarea
{
	width: 260px;
	padding: 5px 20px;
	height: 120px;
	margin-bottom: 20px;
}
.feedback input[type="submit"]
{
	padding: 10px 20px;
	text-transform: uppercase;
	color: #fff;
	background-color: #132f7a;
	border: none;
	cursor: pointer;
	font-size: 12px;
}
.feedback span
{
	font-size: 12px;
	padding: 20px;
	color: #e5a319;
}