

/* ~~~~~~~~~~~~~~~~~~~~~- Reset CSS -~~~~~~~~~~~~~~~~~~~~~ */
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, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
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;
}


/* ~~~~~~~~~~~~~~~~~~~~~- Font Face -~~~~~~~~~~~~~~~~~~~~~ */
@font-face {
    font-family: 'WYekan';
    src: url('/Portalfiles/templates/fonts/webyekan.woff') format('woff');
    font-weight: normal;
}
@font-face {
    font-family: 'WIranSans';
	src: url('/Portalfiles/templates/fonts/webiransans.woff') format("woff");
    font-weight: normal;
}
@font-face {
    font-family: 'WIranSans';
	src: url('/Portalfiles/templates/fonts/webiransans_bold.woff') format("woff");
    font-weight: bold;
}

@font-face {
    font-family: 'BNasim';
	src: url('/Portalfiles/templates/fonts/nassim-bold.woff') format("woff");
    font-weight: bold;
}
/* ~~~~~~~~~~~~~~~~~~~~~- Body -~~~~~~~~~~~~~~~~~~~~~ */
body {
    direction: rtl;
    background: url('/Portalfiles/Templates/1/img/bg/bg-1.jpg') repeat;
}
a:link {
    outline: 0 none;
    text-decoration: none;
}
.hr {
    height: 3px;
    border: 0;
    border-top: 2px dotted #e6e6e6;
    border-bottom: 2px dotted #e6e6e6;
    background: none;
}
.clear {
    clear: both;
}
.wrapper {
    width: 1000px;
	position: relative;
    margin: 0 auto;
}
#site-wrapper {
	display: flex;
	flex-wrap: wrap;
    margin: 25px auto;
}
aside {
    width: 318px;
    float: right;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #06554e;
}
main {
    width: 670px;
    float: left;
    margin-right: 12px;
}


/* ~~~~~~~~~~~~~~~~~~~~~- Header -~~~~~~~~~~~~~~~~~~~~~ */
#site-header {
	position: relative;
	width: 100%;
	height: 90px;
	z-index: 2;
    background: #333333;
    background: -moz-linear-gradient(top, #333333 0%, #252525 100%);
    background: -webkit-linear-gradient(top, #333333 0%, #252525 100%);
    background: linear-gradient(to bottom, #333333 0%, #252525 100%);
}
    #site-header::after {
        content: "";
        position: absolute;
        width: 100%;
        right: 0; bottom: -4px;
        border-bottom: 4px solid rgba(25,38,51,0.3);
        z-index: 1;
        background-clip: padding-box;
    }
#site-logo {
	width: 389px;
	height: 40px;
	float: right;
    margin-right: 32px;
}
    #site-logo h1 {
        text-indent: -2000px;
    }
#primary-nav {
	position: relative;
	height: 46px;
	float: right;
	margin: 27px 45px 7px 0;
	display: inline-block;
	z-index: 3;
	background: #000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
	#primary-nav > li {
        position: relative;
        float: right;
		display: inline-block;
		margin-right: 4px;
		margin-top:5px;
	}
	#primary-nav > li:after {
		content: "";
		width: 1px;
		height: 16px;
		float: left;
		margin: 10px 6px 10px 0;
		border-left: 1px solid #333;
		background: #323232;
	}
	#primary-nav > li:last-child {
		margin-left: 4px;
	}
		#primary-nav > li:last-child:after {
			display: none;
		}
		#primary-nav li a {
			position: relative;
			padding: 0 4px;
			font: 14px/36px WYekan;
			color: #fff;
			z-index: 0;
            -webkit-transition: all 200ms ease-in;
            -moz-transition: all 200ms ease-in;
            -o-transition: all 200ms ease-in;
            transition: all 200ms ease-in;
		}
			#primary-nav li a::after {
				content: "";
				position: absolute;
				top: 0; right: 0;
				bottom: 0; left: 0;
				height: 100%;
				margin: auto;
				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;
				background: rgba(0,0,0,0.35);
				z-index: -1;
                opacity: 0;
				-webkit-transition: all 300ms ease-in;
				-moz-transition: all 300ms ease-in;
				-o-transition: all 300ms ease-in;
				transition: all 300ms ease-in;
			}
				#primary-nav li:hover a::after {
                    opacity: 1;
          
				}
    #primary-nav .sub-menu {
        width: 170px;
        position: absolute;
        top: 30px; right: 0;
        border-top: 2px solid #0C8F7E;
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        -moz-border-radius-bottomright: 5px;
        -moz-border-radius-bottomleft: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        opacity: 0;
        visibility: hidden;
        background: #2c2c2c;
        -webkit-transition: all 300ms ease-in;
        -moz-transition: all 300ms ease-in;
        -o-transition: all 300ms ease-in;
        transition: all 300ms ease-in;
    }
        #primary-nav li:hover .sub-menu {
            top: 40px; right: 0;
            opacity: 1;
            visibility: visible;
        }
        #primary-nav .sub-menu::before {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: -6px; right: 20px;
            border-right: 4px solid transparent;
            border-bottom: 4px solid #0C8F7E;
            border-left: 4px solid transparent;
        }
        #primary-nav .sub-menu li {
            width: 100%;
            float: right;
        }
            #primary-nav .sub-menu li:nth-child(2n+2) {
                background: #212121;
            }
            #primary-nav .sub-menu li:hover a {
                padding-right: 5px;
            }
                #primary-nav .sub-menu li a {
                    float: none;
                    display: block;
                    padding: 5px 0;
                    font: 12px/22px WYekan;
                }
                    #primary-nav .sub-menu li a::before {
                        content: "";
                        width: 3px;
                        height: 5px;
                        float: right;
                        margin: 11px 2px 0 5px;
                        background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -225px -10px;
                    }
                    #primary-nav .sub-menu li a::after {
                        display: none;
                    }


/* ~~~~~~~~~~~~~~~~~~~~~- SPN -~~~~~~~~~~~~~~~~~~~~~ */
#site-spn {
}
#site-spn.nt-off {
    border-bottom: 6px solid #022722;
}
    #site-spn .wrapper.sp {
        height: 422px;
        overflow: hidden;
    }
    #site-spn #slider {
        position: relative;
        width: 600px;
        height: 400px;
        float: right;
        margin: 20px 6px 0 0;
        border: 2px solid #fff;
        border-bottom: 0;
        background: #252525;
    }
        #site-spn #slider::after {
            content: "";
            position: absolute;
            top: -8px; right: -8px;
            width: 604px;
            height: 402px;
            border: 6px solid rgba(0,0,0,0.2);
            border-bottom: 0;
            -webkit-border-top-left-radius: 58px;
            -webkit-border-top-right-radius: 58px;
            -moz-border-radius-topleft: 58px;
            -moz-border-radius-topright: 58px;
            border-top-left-radius: 58px;
            border-top-right-radius: 58px;
        }
        #site-spn #slider .site-slider, #slider .slider-wrap {
            position: relative;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        #site-spn #slider, #site-spn #slider .site-slider {
            -webkit-border-top-left-radius: 52px;
            -webkit-border-top-right-radius: 52px;
            -moz-border-radius-topleft: 52px;
            -moz-border-radius-topright: 52px;
            border-top-left-radius: 52px;
            border-top-right-radius: 52px;
        }
            #site-spn #slider .slider-wrap li {
                float: left;
                display: none;
            }
                #site-spn #slider .slider-wrap li img {
                    width: 100%;
                    height: 100%;
                }
                #site-spn #slider .slider-wrap li .data-box {
                    position: absolute;
                    right: 0; bottom: 0;
                    width: 100%;
                    min-height: 44px;
                    background: rgba(0,0,0,0.4);
                }
                    #site-spn #slider .slider-wrap li .data-box h2 {
                        padding: 7px 15px;
                        font: 14px/30px WYekan;
                        color: #fff;
                        text-align: justify;
                    }
            #site-spn #slider .site-slider li {
                position: absolute;
                top: 0; right: 0;
                bottom: 0; left: 0;
                display: none;
                z-index: 8;
            }
            #site-spn #slider .site-slider li.active {
                display: block;
                z-index: 10;
            }
        #site-spn #slider .slider-arrow {
            position: absolute;
            top: 184px; left: -32px;
            width: 32px;
            height: 32px;
            text-indent: -999px;
            z-index: 2;
            opacity: 0;
            visibility: hidden;
            background: url('/Portalfiles/Templates/1/img/sprite.png') -131px 0;
            -webkit-transition: all 200ms ease-in;
            -moz-transition: all 200ms ease-in;
            -o-transition: all 200ms ease-in;
            transition: all 200ms ease-in;
        }
        #site-spn #slider .slider-arrow.next {
            right: -32px;
            background: url('/Portalfiles/Templates/1/img/sprite.png') -89px 0;
        }
            #site-spn #slider:hover .slider-arrow {
                left: 20px;
                opacity: 0.6;
                visibility: visible;
            }
            #site-spn #slider:hover .slider-arrow.next {
                left: auto;
                right: 20px;
            }
            #site-spn #slider .slider-arrow:hover {
                cursor: pointer;
                opacity: 1;
            }

    #site-spn .person-pic {
        position: relative;
        width: 360px;
        height: 400px;
        float: left;
        margin: 20px 0 0 6px;
        border: 2px solid #fff;
        border-bottom: 0;
        -webkit-border-top-left-radius: 52px;
        -webkit-border-top-right-radius: 52px;
        -moz-border-radius-topleft: 52px;
        -moz-border-radius-topright: 52px;
        border-top-left-radius: 52px;
        border-top-right-radius: 52px;
    }
        #site-spn .person-pic::after {
            content: "";
            position: absolute;
            top: -8px; right: -8px;
            width: 364px;
            height: 402px;
            border: 6px solid rgba(0,0,0,0.2);
            border-bottom: 0;
            -webkit-border-top-left-radius: 58px;
            -webkit-border-top-right-radius: 58px;
            -moz-border-radius-topleft: 58px;
            -moz-border-radius-topright: 58px;
            border-top-left-radius: 58px;
            border-top-right-radius: 58px;
        }
        #site-spn .person-pic img {
            -webkit-border-top-left-radius: 50px;
            -webkit-border-top-right-radius: 50px;
            -moz-border-radius-topleft: 50px;
            -moz-border-radius-topright: 50px;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
        }

    #site-spn #news-ticker {
        height: 40px;
        padding: 12px 0;
        border-top: 6px solid #022722;
        background: rgba(0,0,0,0.5);
    }
    #site-spn #news-ticker.sp-off {
        border-top: 0;
    }
        #site-spn #news-ticker #news-ticke-wrapper {
            width: 1000px;
            height: 40px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            background: rgba(0,0,0,0.3);
        }
        #site-spn #news-ticker h5 {
            width: 70px;
            float: right;
            padding-right: 30px;
            font: 16px/40px WYekan;
            color: #fff;
            text-align: right;
        }
        #site-spn #news-ticker ul {
            width: 890px;
            height: 40px;
            float: left;
            position: relative;
        }
            #site-spn #news-ticker ul li {
                width: 888px;
                position: absolute;
                top: 0; right: 0;
                float: right;
                overflow: hidden;
                font: 12px/40px WIranSans;
                color: #fff;
            }
                #site-spn #news-ticker ul li:before {
                    content: "";
                    width: 0;
                    height: 0;
                    float: right;
                    margin-left: 5px;
                    margin-top: 17px;
                    border-top: 4px solid transparent;
                    border-right: 4px solid #b47c16;
                    border-bottom: 4px solid transparent;
                }
                #site-spn #news-ticker ul li a {
                    font: 12px/40px WIranSans;
                    color: #fff;
                }


/* ~~~~~~~~~~~~~~~~~~~~~- Aside -~~~~~~~~~~~~~~~~~~~~~ */
aside #aside-wrapper {
    width: 288px;
    height: 100%;
    margin: auto;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #0C8F7E;
}
aside .person-pic {
    width: 100%;
    height: auto;
}
#about {
	margin-bottom: 17px;
    padding: 0 17px 100px 17px;
    background: url('/Portalfiles/Templates/1/img/about-bot.jpg') bottom center no-repeat;
}
    #about h5 {
        margin-bottom: 8px;
        font: 16px/28px WIranSans;
        color: #ffdd00;
        text-align: center;
        letter-spacing: -1px;
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
    }
    #about p {
        font: 12px/26px WIranSans;
        color: #e9eff8;
        text-align: justify;
        white-space: pre-line;
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
    }


/* ~~~~~~~~~~~~~~~~~~~~~- Widget -~~~~~~~~~~~~~~~~~~~~~ */
.widget p {
	margin-bottom: 12px;
	font: 12px/22px WIranSans;
	color: #fff;
	text-align: justify;
}
	.widget p a {
		font-size: 11px;
	}
.widget a {
	font-family: WIranSans;
    color: #e3efef;
    text-shadow: 0.53px 0.848px 2px rgba(102, 91, 68, 0.294);
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}
	.widget a:hover {
		color: #fff;
	}
.widget input {
	height: 36px;
	float: left;
}
.widget input[type="button"], .widget input[type="submit"] {
	height: 30px;
	float: none;
	padding: 0 5px;
	border: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font: 11px/1 WIranSans;
	color: #e3efef;
	background: #06554e;
}
.widget input[type="button"], .widget input[type="submit"] {
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
}
	.widget input[type="button"]:hover, .widget input[type="submit"]:hover {
		cursor: pointer;
		background: #05453f;
	}

    aside .widget {
        margin-bottom: 20px;
		padding: 0 17px 36px 19px;
		color: #fff;
        background: url('/Portalfiles/Templates/1/img/seprate.jpg') repeat-x bottom center;
    }
		aside .widget header {
			width: 288px;
            height: 31px;
			margin: 0 -17px 12px 0;
            border-top: 5px solid #06554e;
			background: #faa61a;
			background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -moz-linear-gradient(top, #faa61a 0%, #f88310 100%);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -webkit-linear-gradient(top, #faa61a 0%, #f88310 100%);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), linear-gradient(to bottom, #faa61a 0%, #f88310 100%);
		}
			aside .widget header h5 {
				position: relative;
				min-width: 110px;
                height: 31px;
				float: right;
				padding-right: 17px;
				font: 14px/26px WIranSans;
				color: #fff;
                text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
				text-align: right;
				background: #06554e;
			}
				aside .widget header h5::after {
					content: "";
					position: absolute;
					top: 0; left: -34px;
					width: 34px;
					height: 31px;
                    background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -173px 0;
				}
        aside .widget ul li {
            display: block;
            padding: 0 9px 0 12px;
            font: 12px/36px WIranSans;
            color: #fff;
            text-shadow: 0.53px 0.848px 2px rgba(102, 91, 68, 0.294);
        }
            aside .widget ul li:nth-child(2n+1) {
                background: #29a393;
            }
            aside .widget ul li:before {
                content: "";
                width: 4px;
                height: 7px;
                float: right;
                margin: 15px 0 0 5px;
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -225px 0;
            }

	aside #quick-links header {
		margin-bottom: 0px;
	}
    aside #quick-links ul li {
		width: 288px;
		margin-right: -17px;
        padding: 0 17px 0 19px;
        font: 14px/36px WIranSans;
        background: none;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
        -webkit-transition: all 100ms ease-in;
        -moz-transition: all 100ms ease-in;
        -o-transition: all 100ms ease-in;
        transition: all 100ms ease-in;
    }
        #quick-links ul li:nth-child(2n+2) {
            background: #29a393;
        }
        #quick-links ul li:hover {
            padding-right: 22px;
        }

	aside .search-form {
		height: 40px;
		padding-top: 15px;
	}
		aside .search-form * {
			border: 0;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
			font: 11px/30px WIranSans;
			-webkit-transition: all 100ms ease-in;
			-moz-transition: all 100ms ease-in;
			-o-transition: all 100ms ease-in;
			transition: all 100ms ease-in;
		}
		aside .search-form .search-input {
			width: 200px;
			height: 30px;
			float: right;
			padding: 0 9px;
			color: #e3efef;
			background: #06554e;
		}
		aside .search-form .search-submit {
			width: 48px;
			float: left !important;
			padding: 0 !important;
		}


/* ~~~~~~~~~~~~~~~~~~~~~- Main -~~~~~~~~~~~~~~~~~~~~~ */
#last-post {
    overflow: hidden;
}
#last-post.no-home {
    margin-top: 16px;
}
    #last-post header {
        width: 100%;
        height: 31px;
        border-top: 5px solid #06554e;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        overflow: hidden;
        background: #faa61a;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -moz-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -webkit-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), linear-gradient(to bottom, #faa61a 0%, #f88310 100%);
    }
        #last-post header h5 {
            position: relative;
            min-width: 520px;
            height: 27px;
            float: right;
            padding-right: 17px;
            font: 14px/22px WIranSans;
            color: #fff;
            text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
            text-align: right;
            background: #06554e;
        }
			#last-post header h5::after {
                content: "";
                position: absolute;
                top: 0; left: -31px;
                width: 31px;
                height: 27px;
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -292px 0;
			}
            #last-post header h5 span {
                padding-left: 10px;
                color: #faa61a;
            }
    #last-post #lp-content{
        border: 1px solid #c6c6c6;
        border-top: none;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        overflow: hidden;
        background: #fff;
        min-height: 800px;
    }
    #last-post article {
        position: relative;
        width: 635px;
        min-height: 131px;
        display: inline-block;
        margin: 0 1px;
        padding: 20px 0;
        border-bottom: 2px dotted #e6e6e6;
    }
        #last-post article::after {
            content: "";
            position: absolute;
            right: 0; bottom: 0;
            width: 100%;
            height: 3px;
            border-bottom: 2px dotted #e6e6e6;
        }
        #last-post article:last-child {
            /* border-bottom: none; */
        }
            #last-post article:last-child::after {
                display: none;
            }
        #last-post article .post-thumb {
            width: 200px;
            height: 125px;
            float: right;
            padding: 2px;
            border: 1px solid #e8e8e8;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            border-radius: 2px;
        }
            #last-post article .post-thumb img {
                width: 200px;
                height: 125px;
            }
        #last-post article .post-entry {
            width: 420px;
            min-height: 131px;
            float: left;
        }
            #last-post article .post-entry * {
                display: block;
            }
            #last-post article .post-entry h2 a, #last-post article .post-entry h3 a {
                margin-bottom: 6px;
                font: 16px/18px WYekan;
                color: #07746a;
            }
            #last-post article .post-entry .time {
                margin-bottom: 17px;
                font: 12px/18px Tahoma;
                color: #a6a6a6;
            }
            #last-post article .post-entry p {
                font: 12px/24px WIranSans;
                color: #212121;
                text-align: justify;
            }

    #last-post #pagination {
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }
        #last-post #pagination ul {
            display: inline-block;
        }
            #last-post #pagination ul li {
                min-width: 26px;
                height: 26px;
                margin: 0 1px;
                display: inline-block;
                font: 12px/26px WYekan;
                text-align: center;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                overflow: hidden;
				background: #06554e;
				background: -moz-linear-gradient(top, #06554e 0%, #05453f 100%);
				background: -webkit-linear-gradient(top, #06554e 0%, #05453f 100%);
				background: linear-gradient(to bottom, #06554e 0%, #05453f 100%);
                -webkit-transition: all 200ms ease-in;
                -moz-transition: all 200ms ease-in;
                -o-transition: all 200ms ease-in;
                transition: all 200ms ease-in;
            }
            #last-post #pagination ul li.direct {
                font: 11px/24px WYekan;
            }
            #last-post #pagination ul li.active, #last-post #pagination ul li:hover {
                background: #333333;
                background: -moz-linear-gradient(top, #333333 0%, #252525 100%);
                background: -webkit-linear-gradient(top, #333333 0%, #252525 100%);
                background: linear-gradient(to bottom, #333333 0%, #252525 100%);
            }
                #last-post #pagination ul li * {
                    display: block;
                    padding: 0 8px;
                    color: #fff;
                }

.two-part-post, #photo-gallery {
    margin-top: 16px;
    overflow: hidden;
}
    .two-part-post header, #photo-gallery header {
        width: 100%;
        height: 31px;
        border-top: 5px solid #06554e;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        overflow: hidden;
        background: #faa61a;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -moz-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -webkit-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), linear-gradient(to bottom, #faa61a 0%, #f88310 100%);
    }
        .two-part-post header h5, #photo-gallery header h5 {            
            position: relative;
            min-width: 520px;
            height: 27px;
            float: right;
            padding-right: 17px;
            font: 14px/22px WIranSans;
            color: #fff;
            text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
            text-align: right;
            background: #06554e;
        }
            .two-part-post header h5::after, #photo-gallery header h5::after {
                content: "";
                position: absolute;
                top: 0; left: -31px;
                width: 31px;
                height: 27px;
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -292px 0;
            }
        .two-part-post header #controls {
            width: 46px;
            float: left;
			margin: 4px 0 5px 16px;
        }
            .two-part-post header #controls li {
                float: left;
            }
            .two-part-post header #controls span {
                width: 22px;
                height: 22px;
                display: block;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                border-radius: 3px;
                text-indent: -999px;
                overflow: hidden;
                cursor: pointer;
				background-color: rgba(0,0,0,0.5);
                -webkit-transition: all 200ms ease-in;
                -moz-transition: all 200ms ease-in;
                -o-transition: all 200ms ease-in;
                transition: all 200ms ease-in;
            }
            .two-part-post header #controls .next span {
                margin-left: 2px;
                background-image: url('/Portalfiles/Templates/1/img/sprite.png');
				background-position: -63px 6px;
            }
            .two-part-post header #controls .prev span {
                background-image: url('/Portalfiles/Templates/1/img/sprite.png');
				background-position: -45px 6px;
            }
                .two-part-post header #controls span:hover {
                    background-color: rgba(0,0,0,0.7);
                }
    .two-part-post #tpp-content {
        position: relative;
        width: 668px;
        height: 151px;
        border: 1px solid #c6c6c6;
        border-top: none;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        overflow: hidden;
        background: #fff;
    }
        .two-part-post #tpp-content #tpp-posts {
            width: 1965px;
            position: absolute;
            top: 0; right: 0;
            padding: 10px 13px;
        }
            .two-part-post #tpp-content #tpp-posts .post-thumb {
                width: 200px;
                height: 125px;
                position: relative;
                float: right;
                margin-left: 12px;
                padding: 2px;
                border: 1px solid #e8e8e8;
                -webkit-border-radius: 2px;
                -moz-border-radius: 2px;
                border-radius: 2px;
                -webkit-transition: all 200ms ease-in;
                -moz-transition: all 200ms ease-in;
                -o-transition: all 200ms ease-in;
                transition: all 200ms ease-in;
            }
                .two-part-post #tpp-content #tpp-posts .post-thumb:nth-child(4) {
                    margin-right: 13px;
                }
                .two-part-post #tpp-content #tpp-posts .post-thumb:last-child {
                    margin-left: 0;
                }
                .two-part-post #tpp-content #tpp-posts .post-thumb img {
                    width: 200px;
                    height: 125px;
                }
                .two-part-post #tpp-content #tpp-posts .post-thumb h4 {
                    position: absolute;
                    top: 2px; right: 2px;
                    bottom: 2px; left: 2px;
                    display: flex;
                    align-items: center;
                    -webkit-justify-content: center;
                    -moz-justify-content: center;
                    justify-content: center;
                    opacity: 0;
                    padding: 0 5px;
                    font: 12px/30px WIranSans;
                    color: #fff;
                    text-align: center;
                    text-shadow: 0.5px 0.8px 2px rgba(0, 0, 0, 0.5);
                    -webkit-transform: scale(0);
                    -moz-transform: scale(0);
                    -ms-transform: scale(0);
                    -o-transform: scale(0);
                    transform: scale(0);
                    background: rgba(0, 0, 0, 0.5);
                    -webkit-transition: all 300ms ease-in;
                    -moz-transition: all 300ms ease-in;
                    -o-transition: all 300ms ease-in;
                    transition: all 300ms ease-in;
                }
                    .two-part-post #tpp-content #tpp-posts .post-thumb:hover h4 {
                        opacity: 1;
                        -webkit-transform: scale(1);
                        -moz-transform: scale(1);
                        -ms-transform: scale(1);
                        -o-transform: scale(1);
                        transform: scale(1);
                    }
                #video-gallery #tpp-content #tpp-posts .post-thumb::after {
                    position: absolute;
                    top: 0; right: 0;
                    bottom: 0; left: 0;
                    content: "";
                    width: 48px;
                    height: 35px;
                    margin: auto;
                    opacity: 1;
                    -webkit-transform: scale(1);
                    -moz-transform: scale(1);
                    -ms-transform: scale(1);
                    -o-transform: scale(1);
                    transform: scale(1);
                    background:  url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -234px 0;
                    -webkit-transition: all 300ms ease-in;
                    -moz-transition: all 300ms ease-in;
                    -o-transition: all 300ms ease-in;
                    transition: all 300ms ease-in;
                }
                    #video-gallery #tpp-content #tpp-posts .post-thumb:hover::after {
                        opacity: 0;
                        -webkit-transform: scale(0);
                        -moz-transform: scale(0);
                        -ms-transform: scale(0);
                        -o-transform: scale(0);
                        transform: scale(0);
                    }
    #photo-gallery #pg-content {
        position: relative;
        width: 648px;
        height: 400px;
        padding: 11px;
        background: #212121;
    }
        #photo-gallery .slider-main {
            position: relative;
            width: 600px;
            height: 400px;
            float: right;
            z-index: 1;
        }
            #photo-gallery .slider-main li {
                position: absolute;
                width: 600px;
                height: 400px;
                display: none;
            }
                #photo-gallery .slider-main li img {
                    width: 100%;
                    height: 100%;
                }
                #photo-gallery .slider-main li .data-box {
                    position: absolute;
                    right: 0; bottom: 0;
                    width: 493px;
                    min-height: 38px;
                    background: rgba(0,0,0,0.4);
                }
                    #photo-gallery .slider-main li .data-box h4 {
                        padding: 6px 10px;
                        font: 12px/26px WIranSans;
                        color: #fff;
                        text-align: justify;
                    }
        #photo-gallery .slider-thumb {
            position: absolute;
            top: 11px; left: 11px;
            width: 155px;
            height: 400px;
            float: left;
            z-index: 1;
            background: #212121;
        }
            #photo-gallery .slider-thumb li {
                position: relative;
                width: 155px;
                height: 97px;
                display: block;
                margin-top: 4px;
                cursor: pointer;
            }
                #photo-gallery .slider-thumb li::after {
                    content: "";
                    position: absolute;
                    top: 0; right: 0;
                    width: 11px;
                    height: 97px;
                    background: #212121;
                }
                #photo-gallery .slider-thumb li:first-child {
                    margin-top: 0;
                }
                #photo-gallery .slider-thumb li.active::after {
                    content: "";
                    position: absolute;
                    top: 0; right: 0;
                    width: 11px;
                    height: 97px;
                    margin: auto;
                    background: url('/Portalfiles/Templates/1/img/tes.png');
                }
                #photo-gallery .slider-thumb li img {
                    width: 100%;
                    height: 100%;
                }

#breadcrumbs {
    width: 644px;
    min-height: 30px;
    padding: 0 12px;
    margin: 0 auto;
    border: 1px solid #c6c6c6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	font: 11px/30px WIranSans;
	color: #05453f;
    background: #fff;
}
    #breadcrumbs #breadcrumbs-title, #breadcrumbs h5, #breadcrumbs a {
        display: inline-block;
        font: 11px/30px WIranSans;
    }
    #breadcrumbs #breadcrumbs-title {
        color: #969ca1;
    }
    #breadcrumbs a {
        color: #06554e;
        -webkit-transition: all 100ms ease-in;
        -moz-transition: all 100ms ease-in;
        -o-transition: all 100ms ease-in;
        transition: all 100ms ease-in;
    }
        #breadcrumbs a:hover {
            color: #05453f;
        }
        #breadcrumbs a:after {
            content: "»";
            margin-right: 5px;
            font-size: 14px;
            color: #969ca1;
        }
            #breadcrumbs a:last-child:after {
            	margin-left: 3px;
            }

#site-article {
    margin-top: 16px;
}
    #site-article #article-header {
        position: relative;
        width: 100%;
        min-height: 36px;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        overflow: hidden;
        z-index: 0;
        background: #06554e;
    }
    #site-article #article-header::after {
        content: "";
        position: absolute;
        right: 0; bottom: 0;
        width: 100%;
        height: 31px;
        z-index: 1;
        background: #faa61a;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -moz-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -webkit-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), linear-gradient(to bottom, #faa61a 0%, #f88310 100%);
    }
        #site-article #article-header h1 {
            position: relative;
            width: 475px;
            min-height: 32px;
            float: right;
            margin-bottom: 4px;
            padding-right: 17px;
            font: 14px/31px WIranSans;
            color: #fff;
            text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
            text-align: right;
            z-index: 2;
            background: #06554e;
        }
            #site-article #article-header h1::after {
                content: "";
                position: absolute;
                bottom: 0; left: -31px;
                width: 31px;
                height: 27px;
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -292px 0;
            }
        #site-article #article-header .time {
            position: absolute;
            bottom: 0; left: 0;
			width: 145px;
            font: 11px/31px WIranSans;
            color: #fff;
            text-shadow: 0.53px 0.848px 1px rgba(0, 0, 0, 0.196);
            text-align: center;
            z-index: 2;
        }
    #site-article .entry {
        width: 644px;
        display: inline-block;
        padding: 0 12px 10px 12px;
        border: 1px solid #c6c6c6;
        border-top: none;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        clear: both;
        overflow: hidden;
        font: 13px WIranSans;
        color: #000;
        text-align: justify;
        background: #fff;
    }
        #site-article .entry p {
            margin-top: 10px;
            font: 13px/28px WIranSans;
            text-align: justify;
        }
        #site-article .entry img.size-full {
            display: block;
            max-height: 100%;
            max-width: 100%;
        }
        #site-article .entry img.aligncenter, #site-article .entry img.alignnone {
            display: block;
            max-height: 100%;
            max-width: 100%;
            margin: 12px auto 20px auto;
        }
        #site-article .entry img.alignright {
            float: right;
            margin-left: 12px;
        }
        #site-article .entry img.alignleft {
            float: left;
            margin-right: 12px;
        }
        .entry img {
            max-width: 636px;
        }

#site-comments {
    margin-top: 16px;
    overflow: hidden;
}
    #site-comments header {
        width: 100%;
        height: 31px;
        border-top: 5px solid #06554e;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        overflow: hidden;
        background: #faa61a;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -moz-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -webkit-linear-gradient(top, #faa61a 0%, #f88310 100%);
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), linear-gradient(to bottom, #faa61a 0%, #f88310 100%);
    }
        #site-comments header h5 {
            position: relative;
            min-width: 520px;
            height: 27px;
            float: right;
            padding-right: 17px;
            font: 14px/22px WIranSans;
            color: #fff;
            text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
            text-align: right;
            background: #06554e;
        }
            #site-comments header h5::after {
                content: "";
                position: absolute;
                top: 0; left: -31px;
                width: 31px;
                height: 27px;
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -292px 0;
            }
	#site-comments #sc-content {
        border: 1px solid #c6c6c6;
        border-top: none;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-bottom-left-radius: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-bottomleft: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        overflow: hidden;
        background: #fff;
	}
    #site-comments li {
        padding: 10px 12px 0 12px;
    }
    #site-comments .comment-body {
        padding: 2px 14px 8px 14px;
        border: 1px solid #e0e0e0;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }
    #site-comments .comment-data {
        width: 100%;
        height: 28px;
        border-bottom: 1px solid #e0e0e0;
    }
        #site-comments .comment-data .name {
            float: right;
            font: bold 12px/24px Tahoma;
            color: #666666;
        }
        #site-comments .comment-data .name a {
            color: #666666;
            -webkit-transition: all 100ms ease-in;
            -moz-transition: all 100ms ease-in;
            -o-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
        }
        #site-comments .comment-data .name a:hover {
            color: #002944;
        }
        #site-comments .comment-data .time, .comment-data .comment-reply-link {
            float: right;
            margin-right: 10px;
            font: 12px/24px Tahoma;
            color: #bbbbbb;
        }
        #site-comments .comment-data .comment-reply-link {
            float: left;
        }
            #site-comments .comment-data .comment-reply-link:before {
                width: 14px;
                height: 16px;
                float: right;
                margin: 5px 3px;
                content: "";
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat 0 0;
            }
    #site-comments .comment-text {
        font: 12px/24px Tahoma;
        color: #666666;
    }
    #site-comments .children > li {
        position: relative;
        margin-right: 25px;
        padding: 10px 12px 0 0;
    }
    #site-comments .children > li:before {
        position: absolute;
        top: 11px; right: -12px;
        width: 17px;
        height: 11px;
        content: "";
        background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -24px 0;
    }
    #site-comments hr {
        margin: 20px 12px 0 12px;
    }
    #site-comments #respond {
        padding: 16px 12px;
    }
		#site-comments #respond .current-user {
            font: 12px/27px WYekan;
		}
        #site-comments #respond input, #site-comments #respond textarea {
            color: #666666;
            border: 1px solid #e0e0e0;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
            background: #fff;
        }
        #site-comments #respond .form-input {
            width: 278px;
            height: 27px;
            display: block;
            padding: 0 6px;
            margin-bottom: 10px;
            font: 12px/27px WYekan;
        }
        #site-comments #respond #comment {
            width: 100%;
            height: 75px;
            padding: 6px;
            font: 12px/22px WYekan;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }
        #site-comments #respond #submit {
            width: 86px;
            height: 25px;
            margin-top: 10px;
            border: 0;
            color: #ffffff;
            font: 12px/1 WYekan;
            background: #06554e; 
            -webkit-transition: all 100ms ease-in;
            -moz-transition: all 100ms ease-in;
            -o-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
        }
            #site-comments #respond #submit:hover {
                cursor: pointer;
                background: #05453f;
            }

.er404 {
	margin: 80px 0;
	font-size: 85px;
	text-align: center;
}
.alert {
	padding: 15px;
	margin: 15px;
	font: 16px WIranSans;
	color: #a94442;
	text-align: center;
	border: 1px solid #ebccd1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #f2dede;
}


/* ~~~~~~~~~~~~~~~~~~~~~- Footer -~~~~~~~~~~~~~~~~~~~~~ */
#site-footer {
    width: 100%;
    background: #212121;
}
    #site-footer #footer-wrapper {
        width: 970px;
        margin: auto;
        padding: 20px 0 10px 0;
    }
    #site-footer .widget {
        width: 308px;
        float: right;
    }
        #site-footer .widget:nth-child(2) {
            margin: 0 23px;
        }
        #site-footer .widget .header {
			width: 308px;
            height: 31px;
			margin-bottom: 12px;
            border-top: 5px solid #06554e;
			background: #faa61a;
			background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -moz-linear-gradient(top, #faa61a 0%, #f88310 100%);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), -webkit-linear-gradient(top, #faa61a 0%, #f88310 100%);
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAFUlEQVQImWNgQAO/txn+p7oAAwMDAPVsDmaPVxWPAAAAAElFTkSuQmCC), linear-gradient(to bottom, #faa61a 0%, #f88310 100%);
        }
            #site-footer .widget .header h5 {
				position: relative;
				min-width: 110px;
                height: 31px;
				float: right;
				padding-right: 17px;
				font: 14px/26px WIranSans;
				color: #fff;
                text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
				text-align: right;
				background: #06554e;
            }
				#site-footer .widget .header h5::after {
					content: "";
					position: absolute;
					top: 0; left: -34px;
					width: 34px;
					height: 31px;
                    background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -173px 0;
				}
        #site-footer .widget p, #site-footer .widget a {
            margin-bottom: 12px;
            font: 12px/22px WIranSans;
            color: #d5d5d5;
            text-align: justify;
        }
			#site-footer .widget a:hover {
				color: #fff;
			}
        #site-footer .widget ul li {
            display: block;
            padding: 0 17px 0 12px;
            font: 12px/36px WIranSans;
            color: #fff;
            text-shadow: 0.53px 0.848px 2px rgba(102, 91, 68, 0.294);
        }
            #site-footer .widget ul li:nth-child(2n+1) {
                background: #2b2b2b;
            }
            #site-footer .widget ul li:before {
                content: "";
                width: 4px;
                height: 7px;
                float: right;
                margin: 16px 0 0 5px;
                background: url('/Portalfiles/Templates/1/img/sprite.png') no-repeat -225px -18px;
            }
            #site-footer .widget ul li a {
            	margin-bottom: 0;
            	font: 12px/32px WIranSans;
            	text-align: right;
            }
    #site-footer #footer-seprate {
        width: 100%;
        height: 32px;
        clear: both;
        background: url('/Portalfiles/Templates/1/img/seprate-black.jpg');
    }
    #site-footer #copy-right {
        width: 100%;
        margin-top: 17px;
        text-align: center;
    }
        #site-footer #copy-right * {
            display: inline-block;
            font: 12px/18px WIranSans;
            text-align: center;
        }
        #site-footer #copy-right span {
            width: 100%;
            margin-bottom: 8px;
            color: #737373;
        }
        #site-footer #copy-right a {
            color: #4d4d4d;
            -webkit-transition: all 100ms ease-in;
            -moz-transition: all 100ms ease-in;
            -o-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
        }
            #site-footer #copy-right a:hover {
                color: #363636;
            }
/* ~~~~~~~~~~~~~~~~~~~~~- Farsix -~~~~~~~~~~~~~~~~~~~~~ */
#program{width:288px;margin:0 auto;margin-bottom:10px;margin-top:10px;}
#program a{text-shadow:1px 1px 1px #222222;font:normal 16px/28px WIranSans;background:#B00000;padding:5px 0;border-radius:5px;color:#FFF;display:block;text-align:center;}
#program a:hover{background:#008000;}