/*
To get started customizing with CSS, we recommend you 
go to http://headwaythemes.com/documentation/customizing-your-headway-site/custom-css/ 
to get started.

When writing the selectors for the elements, put body.custom at the
beginning.

For an example on how to change the background with custom CSS
we can use the following code.

body.custom {
	background: red;
}
*/

/* Global */
body.custom a:link {
    text-decoration:none;
}
body.custom a:visited {
    text-decoration:none;
}
body.custom a:hover {
    text-decoration:underline;
}
body.custom a:active {
    text-decoration:none;
}

/* Search */
body.custom #searchform {
    position:relative;
    top:6px;
    float:right;
    width:180px;
}

/* Subscribe Buttons */
body.custom ul.subscribe li {
	margin: 0;
	padding: 0;
	list-style: none;
}
body.custom ul.subscribe li a {
	display: block;
	height: 32px;
	float: left;
	margin: 0 15px 25px 0;
	padding: 0 0 0 32px;
	text-decoration: none;
	background-image: url(http://cdn.rezdwanhamid.com/images/icons/subscribe-icons.png);
	background-repeat: no-repeat;
}
body.custom ul.subscribe li a.email {
	background-position: 0 0;
}
body.custom ul.subscribe li a.rss {
	background-position: -32px 0;
}
body.custom ul.subscribe li a.podcast {
	background-position: -64px 0;
}
body.custom ul.subscribe li a.twitter {
	background-position: -96px 0;
}
body.custom ul.subscribe li a.facebook {
	background-position: -128px 0;
}
body.custom ul.subscribe li a.youtube {
	background-position: -160px 0;
}
body.custom ul.subscribe li a.email:hover {
	background-position: 0 -32px;
}
body.custom ul.subscribe li a.rss:hover {
	background-position: -32px -32px;
}
body.custom ul.subscribe li a.podcast:hover {
	background-position: -64px -32px;
}
body.custom ul.subscribe li a.twitter:hover {
	background-position: -96px -32px;
}
body.custom ul.subscribe li a.facebook:hover {
	background-position: -128px -32px;
}
body.custom ul.subscribe li a.youtube:hover {
	background-position: -160px -32px;
}

/* Footer Sidebar */
body.custom div.horizontal-sidebar ul li.widget {
    width:30%;
}