@charset "UTF-8";
/* CSS Document */

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear: both;
	font-size: 0px;
	height: 0px;
	line-height: 0px;
}

p.clear {
	clear: both;
}

/*~ HTML and Body CSS ~ */
html {
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background-color: #7aa4b6;
	background-image: url(images/bg_gradient_tile.gif);
	background-repeat: repeat;
	background-position: center top;
}

table {
	float: left
}

/* Layout Divs*/

/* Main Wrapper */
#wrapper {
	width:100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position:relative;
}

/* Header Wrapper */
#header_wrapper {
	width: 100%;
	height: 506px;
	background-image: url(images/PK-Interiors-hero-bg-gradient-tile.gif);
	background-repeat: repeat;
	background-position: center top;
	background-color: #b7b7b7;
	margin: auto auto;
}

/* Header container */
#header {
	margin: auto auto;
	width: 1024px;
	height: 506px;
	/*background-color: #000000;*/
}

#logo {
	padding: 13px 0 0 48px;
	width: 178px;
	height: 178px;
	z-index: 10;
	position:absolute;
}

/* Top black baclground area with tagline */
#titleBar {
	margin: auto auto;
	width: 1024px;
	height: 35px;
	background-color: #000000;
}

/* Divides titleBar and hero */
#dividing_rule_top {
	margin: auto auto;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
}
#hero {
	margin: auto auto;
	width: 1024px;
	height: 399px;
}

/* Divides header and content */
#dividing_rule {
	margin: auto auto;
	width: 100%;
	height: 4px;
	background-color: #ffffff;
}

/* Main Content Area */
#content {
	margin: auto auto;
	width: 1024px;
	background-color: #ffffff;
	min-height:50%;
	/*height:100%;*/
	overflow:auto;
	padding: 20px 0 200px 0;
}

/* Projects Table Margin */
.table {
	margin-left: 120px;
}

/* Div for inset photo */
#inset-image {
	display: inline-block;
	vertical-align: top;
	width:320px;
	height:213px;
	margin: 40px 25px 0 95px;
	text-align:center;
}

/* Div for home photos */
#home-image {
	float: left;
	padding: 40px 20px 0 27px;
}

/* Div for text area */
#article-content {
	display: inline-block;
	vertical-align: top;
	width: 460px;
	height: auto;
	margin: 40px 0 0 0;
}

#home-page-content {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	width: ;
	height: auto;
	margin: 40px 100px 0 100px;
}

#article-content-projects {
	vertical-align: top;
	width: auto;
	height: auto;
	margin: 40px auto 0 auto;
}

#footer {
	margin: auto auto;
	width: 1024px;
	height: 70px;
	background-color: #000000;
	text-align: center;
	/*display: table-cell;
	vertical-align: middle;*/
}