/*    GENERAL RESET    */
a, abbr, acronym, address, applet, b, big, blockquote, body, button,
caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset,
font, form, h1, h2, h3, h4, h5, h6, hr, html, i, iframe, img, ins,
kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span,
strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr,
tt, u, ul, var {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: none;
}

/*       FONTS       */
@font-face {
	font-family: 'Vazir';
	src: url('Vazirmatn-FD-Regular.eot');
	src: local('☺'),
	     url('Vazirmatn-FD-Regular.eot?#iefix') format('embedded-opentype'),
	     url('Vazirmatn-FD-Regular.woff2') format('woff2'),
	     url('Vazirmatn-FD-Regular.woff') format('woff'),
	     url('Vazirmatn-FD-Regular.ttf') format('truetype'),
	     url('Vazirmatn-FD-Regular.otf') format('opentype'),
	     url('Vazirmatn-FD-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* GENERAL SETTINGS  */
a {
	text-decoration: none;
}
a:hover {
	font-weight: bolder;
}
body {
	height:100%;
   	color: #000;
	font-family: 'Vazir', Tahoma;
   	font-weight: normal;
   	font-size: 20px;
	background: url('../image/bg.jpg') repeat #fff;
}
hr {
  border: 0;
  clear: both;
  display: block;
  width: 96%;               
  background-color: gray;
  height: 1px;
}

/*   SHOW PAGE   */
.showPageComment {
	font-size: 70%;
	color: gray;
}
.showPageCopyMsg {
	margin-left: 10px;
	opacity: 0; 
	transition: opacity 1s; 
	color: red;
}
.showPageContainer {
    display: flex;
	flex-direction: column;
    align-items: center;
	direction: rtl; 
	unicode-bidi: embed;
}
.showPageLeftCol {
	width: 70%; 
	text-align: right;
	}
.showPageRightCol {
	width: 30%;
	text-align: right;
	}
.showPageRow {
	display: flex;
	width: 90%;
	min-height: 2.2em;
	align-items: center;
	padding: 0.3em;
	}
.showPageRow:hover {
	background: #D7E4EAFF;
	}
.wrapper {
	width: 994px;
	overflow: hidden;
	align-content: center;
	align-items: center;
	text-align: center;
	margin: 60px auto 0;
	background: url("../image/content-bg.jpg") repeat-y scroll center center #FFFFFF;
	}
.wrapper-bottom {
	height: 61px;
	width: 994px;
	clear: both;
	background: url("../image/content-bottom.jpg") no-repeat scroll center top #FFFFFF;
	}
.wrapper-top {
	height: 18px;
	width: 994px;
   	background: url('../image/content-top.jpg') no-repeat scroll center top #FFFFFF;
	}

/*   BUTTON   */
/* From Uiverse.io by Cornerstone-04 - Customized by abgeeneh.ir */ 
.box {
/*  width: 100px;	*/
  height: auto;
  float: left;
  transition: .5s linear;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 5px;  
  text-align: center;
  margin: 0 5px; 
  background: transparent;
  text-transform: uppercase;
  font-family: 'Vazir', Tahoma;
/*  font-size: 23px;    */
}
.box:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}
.box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}
.box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.box:hover:before {
  border-color: #262626;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .3s;
}
.box:hover:after {
  border-color: #262626;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .5s;
}
button {
  color: black;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
  vertical-align: middle; /* this line added here */
}