/* CSS Document */
@font-face {
  font-family: 'sans';
  src: url('../font/main_font.woff') format('woff');
}
body{
	background-color: #f7f7f7;
	font:1rem 'sans';
	font-weight:normal;
	direction:rtl;
	color:#333333;
	margin:0px;
	padding:0px;
}
*{
	margin:0px;
	padding:0px;
	font-family: 'sans';
}
a{
    text-decoration: none;
    color:#333333;
}
::selection {
  background: #CCC; /* WebKit/Blink Browsers */
}
ul{
	list-style-type: none;
}

/***************************************************************************************/

button{
	background-color: #1DBC2E;
	width: auto;
	height: 39px;
	border: none;
	border-radius: 30px;
	float: left;
	color: #FFFFFF;
	margin-top: 3px;
	margin-left: 4px;
	padding: 0px 15px;
	outline: none;
    cursor: pointer;
}
button:hover{
    transition: .5s;
    background-color: #159523;
}
