/*
Theme Name: Twenty Seventeen
Adding support for languages written in a Right To Left (RTL) direction is easy,
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
https://codex.wordpress.org/Right-to-Left_Language_Support
*/

body {
	
	direction: rtl;
	unicode-bidi: embed;
	font-family: Arial;
	font-size: small;
	/*max-width: 1024px;*/
	margin-right: 50px;
	margin-left: 50px;
	margin-top: 10px; 
}

hr {
	size: 1px;
	color: gray;
}
table {
	/*direction: rtl;*/
	background-color:#EEF9F9;
    border-collapse: collapse;
	font-size: inherit;
    //max-width: 1024px;
}

th {
	padding: 8px;
    text-align: right;
    border-bottom: 1px solid #ddd;
	background-color:#5B9595;
	color:#ffffff;
} 

td {
    padding: 8px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

textarea {
	font-size: 10pt;
	font-family: inherit;
}
	
/* unvisited link */
a:link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: larg;
}

/* visited link */
a:visited {
  color: #000000;
  text-decoration: none;
    font-weight: bold;
  font-size: larg;
}

/* mouse over link */
a:hover {
  color: RED;
  text-decoration: none;
    font-weight: bold;
  font-size: larg;
}

/* selected link */
a:active {
  color: #RED;
  text-decoration: none;
    font-weight: bold;
  font-size: larg;
  
}



a.ex1:link {
  background-color: #888888;
  color: white;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: white;
  border-radius: 5px;
}

a.ex1:visited {
  background-color: #888888;
  color: white;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: white;
  border-radius: 5px;
}

a.ex1:hover {
  background-color: #eeeeee;
  color: black;
}

a.ex1:active {
  background-color: #eeeeee;
  color: #black;
}




tr:hover {
	background-color:#f5f5f5;
	}











