/* *******************************************************
   CSS-Reset
*********************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* *******************************************************
   Basic styles
*********************************************************/

body {
	background: #F9F9F9;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	line-height: 140%;
	padding-bottom: 30px;
}

.Block {
	width: 1000px;
	margin: 0px auto;
	position: relative;
}

.Article ol,
.Article ul {
	margin: 10px 0px 10px 30px;
	clear: both;
} 

.Article ol {
	list-style-type: decimal;
}

.Article ul {
	list-style-type: square;
}

.Article ol li, 
.Article ul li {
	margin-bottom: 7px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Slab', sans-serif;
	line-height: 130%;
	margin-bottom: 10px;
}

h1 {
	font-size: 2.2em;
	color: #888126;
}

h2 {
	font-size: 1.8em;
	color: #888126;
}

h3 {
	font-size: 1.5em;
	color: #991D28;
}

h4 {
	font-size: 1.3em;
	color: #991D28;
    margin-top:15px;
}
h4 a{
color: #991D28;
}
h3 a{
color: #991D28;
}

h5 {
	font-size: 1.1em;
	color: #991D28;
}

h6 {
	color: #991D28;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

p + p {
	margin-top: 10px;
    text-align: justify;
}

p a,
ul li a,
ol li a {
	color: #991D28;
}

.Article img {
	margin: 10px;
	border: 5px solid #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.Article img.Left {
	float: left;
	margin-left: 0px;
	margin-right: 15px;
}

.Article img.Right {
	float: right;
	margin-right: 0px;
	margin-left: 15px;
}

.Transition,
.Navigation > li > a,
.Navigation > li > a > i {
	-webkit-transition: all 0.2s ease-in;
	 -moz-transition: all 0.2s ease-in;
	   -o-transition: all 0.2s ease-in;
	      transition: all 0.2s ease-in;
}

.Hidden {
	display: none;
}

.WarningBox {
	padding: 10px;
	background-color: #BF3516;
	color: #fff;
	width: 960px;
	margin: 0px auto 20px auto;
	line-height: 150%;
	text-align: center;
}

/* *******************************************************
   Header
*********************************************************/

header {
	height: 120px;
	background: url(../images/header.jpg) no-repeat center;
	padding-top: 40px;
	margin-bottom: 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

header #Logo {
	position: absolute;
	left: 10px;
	top: 0px;
	z-index: 99;
}

header #Logo img {
	width: 220px;
	height: 114px;
}

header form {
	position: absolute;
	right: 10px;
	top: 0px;
	padding: 10px;
	border-radius: 3px;
	background: rgba(215, 188, 99);
	background-color: rgba(215, 188, 99, 0.4);
}

header form input {
	display: block;
	border: 0px;
	width: 210px;
	padding: 10px;
	font-size: 20px;
	border-radius: 3px;
	padding-left: 40px;
}

::-webkit-input-placeholder { /* WebKit browsers */
	color: #ccc;
}

:focus::-webkit-input-placeholder { /* WebKit browsers */
	color: #fff;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #ccc;
	opacity: 1;
}

:focus:-moz-placeholder {
	color: #fff;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #ccc;
	opacity: 1;
}

:focus::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #fff;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #ccc;
}

:focus:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #fff;
}

header form input:focus {
	width: 300px;
}

header form i {
	position: absolute;
	left: 25px;
	color: #ccc;
	top: 21px;
	font-size: 20px !important;
}

header > .Block {
	position: relative;
	height: 100%;
}

header > .Block > ul {
	text-align: right;
	position: absolute;
	right: 5px;
	bottom: 20px;
}

header > .Block > ul li {
	float: left;
	margin-right: 5px;
}

header > .Block > ul li a {
	color: #fff;
	font-size: 0.9em;
	font-family: 'Roboto Slab', sans-serif;
	text-decoration: none;
}

header > .Block > ul li a:hover {
	text-decoration: underline;
}

header > .Block > ul li:before {
	content: "- ";
	color: #bbb;
}

header > .Block > ul li:first-child:before,
header > .Block > ul li:last-child:before {
	content: "";
}

header > .Block > ul li.Language {
	position: relative;
	padding: 0px 30px;
}

header > .Block > ul li.Language > a {
	background-color: #fff;
	height: 22px;
	position: absolute;
	top: 0px;
	right: 0px;
	border-radius: 3px;
	padding-right: 14px;
}

header > .Block > ul li.Language > a > i {
	color: #333;
	position: absolute;
	top: 5px;
	right: 4px;
}

header > .Block > ul li.Language > a > img {
	width: 25px;
	margin: 4px;
	border-radius: 3px;
}

header > .Block > ul li.Language:hover > a {
	border-radius: 3px 3px 0px 0px;
}

header > .Block > ul li.Language span {
	position: absolute;
	top: 21px;
	background-color: #fff;
	right: 0px;
	width: 160px;
	z-index: 99;
	border: 1px solid #eee;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	display: none;
}

header > .Block > ul li.Language:hover span {
	display: block;
}

header > .Block > ul li.Language span a {
	display: block;
	color: #000;
	text-align: left;
	position: relative;
	font-size: 0.8em;
	padding: 2px 10px 2px 35px;
	border-bottom: 1px solid #eee;
}

header > .Block > ul li.Language span a img {
	width: 20px;
	position: absolute;
	left: 10px;
	top: 10px;
}

header #MobileNavigation {
	display: none;
}

header #MobileNavigation > a {
	color: #fff;
	position: absolute;
	left: 25px;
	top: 54px;
	font-size: 50px;
}

/* *******************************************************
   Footer
*********************************************************/

footer {
	text-align: center;
	border-top: 1px solid #ccc;
	padding-top: 20px;
	margin: 30px auto !important;
	position: relative;
}

footer a {
	color: #991D28;
}

footer a.TopLink {
	position: absolute;
	right: 20px;
	top: 20px;
}

footer a.TopLink span {
	text-indent: -9999px;
	display: inline-block;
	margin-left: 5px;
	font-size: 0.85em;
}

footer a.TopLink:hover span {
	text-indent: 0px;
}

/* *******************************************************
   Main Content Area & Sidebar
*********************************************************/

.Main .Sidebar {
	float: left;
	width: 220px;
	padding: 10px;
}

.Main:after {
	content: ' ';
	clear: both;
	display: block;
}

.Main .Sidebar > *,
.Main .Sidebar .Sticky > * {
	margin-bottom: 15px;
}

.Main .Content {
	float: right; !important;
	width: 73%;
	padding: 10px;
}

.Print {
	background-color: #991D28;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

.Print a {
	text-decoration: none;
	font-size: 13px;
	display: block;
	font-family: 'Roboto Slab', sans-serif;
	color: #E2959C;
	position: relative;
	padding: 12px 20px 12px 40px;
}

.Print a:hover {
	color: #fff;
}

.Print a i {
	color: #CE4853;
	position: absolute;
	top: 18px;
	left: 19px;
}

.Print:hover a i {
	color: #E5676F;
}

.Related {
	font-size: 0.85em;
	position: relative;
}

.Sticky.is_stuck {
	margin-top: 20px;
}

.Related h4 {
	text-align: center;
	margin-bottom: 5px;
}

.Related li {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.Related.NoCut li {
    overflow: visible;
    white-space: normal;
}

.Related ul.Standard {
    list-style-type: square;
    padding-left: 10px;
    color: #000;
}

.Related ul.Standard li {
    display: list-item;
}

/* *******************************************************
   Widgets
*********************************************************/

.Widget {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	background-color: #fff;
	padding: 25px;
}

.Widget + .Widget {
	margin-top: 25px;
}

.menu-tab .Content {
    height: 100%;
    overflow: auto;
}

/* *******************************************************
   Navigation
*********************************************************/

.Navigation {
	background-color: #3B5984;
	color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	padding-top: 130px;
	margin-top: -170px;
}

.Navigation > li > a {
	display: block;
	padding: 6px 20px 6px 40px;
	color: #9EBBE2;
	text-decoration: none;
	font-size: 13px;
	font-family: 'Roboto Slab', sans-serif;
	border-bottom: 1px solid #4E6C96;
	position: relative;
	overflow: hidden;
}

.Navigation > li > a.Active,
.Navigation > li > a:hover,
.Navigation > li > a:focus,
.Navigation > li > a:active {
	color: #fff;
}

.Navigation > li:first-child > a {
	padding-top: 15px;
}

.Navigation > li:last-child > a {
	padding-bottom: 15px;
	border-bottom: 0px;
}

.Navigation > li > a > i {
	position: absolute;
	bottom: 9px;
	color: #6380A8;
	left: -20px;
	opacity: 0;
}

.Navigation > li:last-child > a > i {
	bottom: 18px;
}

.Navigation > li > a.Active > i,
.Navigation > li > a:hover > i,
.Navigation > li > a:focus > i,
.Navigation > li > a:active > i {
	left: 19px;
	opacity: 1;
	color: #8BA4BC;
}

/* *******************************************************
   Topic List
*********************************************************/

.TopicList {
	overflow: hidden;
	padding-top: 5px;
}

.TopicList li {
	float: left;
}

.TopicList li a {
	display: inline-block;
	padding: 0px 8px;
	text-decoration: none;
	background-color: #777;
	color: #fff;
	line-height: 200%;
	white-space: nowrap;
	border-radius: 5px;
	margin-bottom: 5px;
	margin-right: 5px;
	font-size: 0.85em;
}

.TopicList li a:hover {
	background-color: #3B5984;	
}

/* *******************************************************
   Document List
*********************************************************/

.DocumentList {
	overflow: hidden;
	padding-top: 5px;
	position: relative;
}

.DocumentList li {
	line-height: 170%;
	position: relative;
	padding-left: 20px;
}

.DocumentList li > i {
	position: absolute;
	left: 0px;
	top: 5px;
	color: #aaa;
}

ul.NumberedList {
    list-style-type: disc;
    margin: 10px 0px 10px 30px;
}

p a,
ul li a,
ol li a, li {
    color: #991D28;
}

.DocumentList li:hover > i {
	color: #000;
}

.pointer{
    cursor:pointer;
}

/* *******************************************************
   Article
*********************************************************/

.Article .Author {
	margin-top: 10px;
}

/* *******************************************************
   Thirdparty customizations
*********************************************************/
.img-country{
width:28px;
height:16px;
}
#relDiv ul li{
	padding-left:0;
	white-space:unset;
}
#relDiv{
padding:12px;
}
.doc-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 35px;
	height: 0;
	overflow: hidden;
}

.doc-container iframe {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}
.doc-wrapper{
	margin-bottom:20px;
	max-width: 350px;
	height: 200px;
}
.bold{
	font-weight: bold;
}
#tab-container, .menu-tab{
	display: none !important;
}
.even{
	background-color: #efd3d2;
}
.resp-img
{
	max-width: 100% !important;
	height: auto !important;
}