/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

/*


/*---:[ responsive resets ]:---*/

.format_text img,
.format_teaser img,
.format_text iframe,
.format_text object {
	max-width: 100%
}

.format_text img,
.format_teaser img {
	height: auto
}

/*
body.custom {

    background: #CFCAC6 url('images/kwanyin_backgrd.jpg') 25% 0 no-repeat;

}

*/

.custom #container {

    margin-top: 0em;

    margin-bottom: 2em;

}



.custom #page {

    background: #fff;

}
*/

/* body text 
.custom #h1 {font-size: 24px;}
.custom #format_text #h2 { font-size:21px; font-weight: bold; }
.custom #sidebar #h3 { font-size: 18px; letter-spacing: 2px; }
*/

.custom #header #tagline {
        font-size: 20px;
	height: 30px;
	text-indent: 90px;
	color: #333333;
	padding: 10px 5px 10px 0px; 
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 400;
	margin-bottom: 5px;
}

.custom #content_box {
	margin-top: 5px;
}



/* Engraved Buttons */



.engraved {

	background: rgba(0, 0, 0, .08);

	display: inline-block;

	padding: 5px;

	border-radius: 30px;

	-moz-border-radius: 30px;

	-webkit-border-radius: 30px

}

	.format_text .engraved a {

		color: #fff;

		border: 1px solid rgba(0, 0, 0, .3);

		display: inline-block;

		padding: .6em 1.2em;

		position: relative;

		text-decoration: none;

		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);

		border-radius: 30px;

		-moz-border-radius: 30px;

		-webkit-border-radius: 30px;

		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4);

		-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4);

		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4)

	}

		.engraved a.red {

			background: #c60000;

			background: linear-gradient(top, #c60000 0%, #b20000 100%);

			background: -moz-linear-gradient(top, #c60000 0%, #b20000 100%);

			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c60000), color-stop(100%, #b20000));

			background: -webkit-linear-gradient(top, #c60000 0%, #b20000 100%)

		}

		.engraved a.orange {

			background: #f99015;

			background: linear-gradient(top, #f99015 0%, #f76c0f 100%);

			background: -moz-linear-gradient(top, #f99015 0%, #f76c0f 100%);

			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f99015), color-stop(100%,#f76c0f));

			background: -webkit-linear-gradient(top, #f99015 0%,#f76c0f 100%)

		}

		.engraved a.green {

			background: #30a146;

			background: linear-gradient(top, #30a146 0%, #249334 100%);

			background: -moz-linear-gradient(top, #30a146 0%, #249334 100%);

			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #30a146), color-stop(100%, #249334));

			background: -webkit-linear-gradient(top, #30a146 0%, #249334 100%)

		}

		.engraved a.blue {

			background: #16a4c8;

			background: linear-gradient(top, #16a4c8 0%, #1086b6 100%);

			background: -moz-linear-gradient(top, #16a4c8 0%, #1086b6 100%);

			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #16a4c8), color-stop(100%, #1086b6));

			background: -webkit-linear-gradient(top, #16a4c8 0%, #1086b6 100%)

		}

		.engraved a.gray {

			background: #c2c2c2;

			background: linear-gradient(top, #c2c2c2 0%, #aeaeae 100%);

			background: -moz-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%);

			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2c2c2), color-stop(100%, #aeaeae));

			background: -webkit-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%)

		}

		.engraved a.dark {

			background: #464646;

			background: linear-gradient(top, #464646 0%, #343434 100%);

			background: -moz-linear-gradient(top, #464646 0%, #343434 100%);

			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #464646), color-stop(100%, #343434));

			background: -webkit-linear-gradient(top, #464646 0%, #343434 100%)

		}

	.custom .engraved a:hover, .engraved:hover { color: #fff; opacity: .5 }



/* Engraved Buttons END */


/*change the comment # size*/
.custom .format_text .to_comments span { font-size: 14px; }

/* Customize Footer Links */

.custom #footer a {
border-bottom: 1px solid #CCCCCC;
color: #888888;
}

.custom #footer a:hover {
color: #111111;
}

.custom #footer {
  text-align:center;
}

.custom #footer ul,
 .custom #footer li {
  display:inline;
}