body {
  /* padding: 50px; */
  font: 12px "Arial", Helvetica, Arial, sans-serif;
  outline-color: #9B0101;
}

table {
	  outline-color: #9B0101;
}

body:focus {
     outline-color: #9B0101;
}

td:focus {
    outline-color: #9B0101;
}

a {
  color: #000000;
}

h1 {
  font-family: 'Roboto Condensed', serif;
  margin-bottom: 5px;
  display: inline;
}

td {
	vertical-align: top;
}

img {
/*   -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  /*filter: grayscale(100%); */
  /* filter: brightness(120%); */
}

/* Longlist Table */
.LL_Table {
	vertical-align: top; border-spacing:0; border-collapse:collapse;
}

.LL_TD_Headline {
	padding-left:0px
}
.LL_TR_Index {
	font-weight:bold
}

.LL_TD_Left {
	padding-right:10px;
}
.LL_TD_Right {
	padding-left:10px;
}
.LL_TD {
	padding-left:10px;
	padding-right:10px;
	min-width: 65px
}
.LL_TD_Last {
	padding-left:10px;
	padding-right:10px;
	min-width: 65px;
	height:100%
}

.LL_TD_Index_Left {
	padding-right:10px;
}
.LL_TD_Index_Right {
	padding-left:10px;
}
.LL_TD_Index {
	padding-left:10px;
	padding-right:10px;
}

.LL_TD_Left:hover {
  background-color: #ddd;
  cursor: pointer;
}


.BigText {
  /* padding: 50px; */
  font: 24px "Roboto Condensed";
  padding-left: 30px;
}

.NormalText {
  /* padding: 50px; */
  font: 16px "Roboto Condensed";
  padding-left: 30px;
}

.myRabani {
	font-family: 'Merriweather', serif;
	font-size: 32px;
	color: #9B0101;
	padding-left: 30px;
}

.b_myRabani {
	font-family: 'Merriweather', serif;
	font-size: 64px;
	text-align: center;
	color: #9B0101;
	padding-top: 100px;
}

.m_myRabani {
	font-family: 'Merriweather', serif;
	font-size: 32px;
	text-align: left;
	color: #9B0101;
	margin-top:2px;
	margin-left:10px;
	margin-bottom:0;
	margin-right:30px;
}

input::placeholder {
  color: #D0D0D0;
  font-style: normal;
/*   font-size: 1.2em;
  font-style: italic; */
}

/*Navbar*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
      padding-top: 7px;
    padding-left: 16px;
	padding-right: 10px;
  overflow: hidden;
  border: 0px solid #e7e7e7;
  background-color: #ffffff;
  font-family:Roboto;
  position: fixed;
  top: 0;
  right: 0px;
    left: 0px;
  width: 100%;
  z-index: 99;
}

li {
  float: left;
}

li a {
  display: block;
  color: #666;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #ddd;
}

li a.active {
  color: #9b0101;
  background-color: #ffffff;
  border-bottom:3px solid #9b0101;
}

/* Input */

.myInput {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 10px 20px;
  border: 1px solid #b7b7b7;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-family:Arial;
  font-size:16px;
  color: rgba(155,1,1,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(252,252,252,1);
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}
.myInput:focus {
     outline:none;
}

.myButton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
	background:-moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:-webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:-o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:-ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9',GradientType=0);
	background-color:#f9f9f9;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:13px;
	padding:6px 24px;
	text-decoration:none;
	margin-top:10px;
	margin-bottom:10px;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
	background:-moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:-webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:-o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:-ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9',GradientType=0);
	background-color:#e9e9e9;
}
.myButton:active {
	position:relative;
	top:1px;
}

hr.line1{
	border-top: 1px solid #8c8b8b;
}

hr.line-thick{
	border-top: 3px solid #000000;
}
hr.line-thin{
	border-top: 1px solid #000000;
}


hr.line2 {
	border-top: 3px double #8c8b8b;
}

hr.line3 {
	border-top: 1px dashed #8c8b8b;
}

hr.line4 {
	border-top: 1px dotted #8c8b8b;
}

hr.line5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}


hr.line6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}

hr.line7 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}


hr.line8 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}
hr.line8:after {
	content: '';
	display: block;
	margin-top: 2px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}

hr.line9 {
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}

hr.line10 {
	border-top: 1px dotted #8c8b8b;
	border-bottom: 1px dotted #fff;
}


hr.line13 {
	height: 10px;
	border: 0;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


hr.line14 { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}


hr.line15 {
  border:0;
	border-top: 4px double #8c8b8b;
	text-align: center;
  width:90%;
}
hr.line15:after {
	content: '\002665';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
  border:0;
}

hr.line16 { 
  border:0;
  border-top: 1px dashed #8c8b8b; 
} 
hr.line16:after { 
  content: '\002702'; 
  display: inline-block; 
  position: relative; 
  top: -12px; 
  left: 40px; 
  padding: 0 3px; 

  color: #8c8b8b; 
  font-size: 18px; 
}


hr.line17 {
  border:0;
	border-top: 1px solid #8c8b8b;
	text-align: center;
}
hr.line17:after {
	content: '§';
	display: inline-block;
	position: relative;
	top: -14px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	transform: rotate(60deg);
}


hr.line18 { 
  height: 30px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 1px 0 0 0; 
  border-radius: 20px; 
} 
hr.line18:before { 
  display: block; 
  content: ""; 
  height: 30px; 
  margin-top: -31px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 0 0 1px 0; 
  border-radius: 20px; 
}