/*

	Theme Name:	 p2p_cms
	Theme URI:	 http://point2pointcentral.com
	Description: WP CMS style layout. Widget friendly.
	Tags:		 custom, CMS, three columns, fixed width
	Version:	 0.5
	Author:		 Dylan James Wagner
	Author URI:	 http://dylanjameswagner.com

	Designed for point2point as a CMS theme.

	// -------------------------------------------------------------- //
	// common.css
	
	// to-do:
	// :hover, :focus & :active on forms and tables.

	// font: style variant weight size/line family generic;
	// 			serif, sans-serif, monospace, cursive, fantasy
	// Windows	Arial Courier New, Georgia, Times New Roman,
				Verdana, Trebuchet MS, Lucida Sans, Comic Sans
	// OS X		Verdana, Times, Helvetica
*/

/* this is not implimented in most browsers 
@font-face {
	font-family: 'Kimberley';
	src: url('http://www.princexml.com/fonts/larabie/kimberle.ttf') format('truetype');
}
*/

body {
	font: normal normal inherit 100%/100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666;
}
a {
	text-decoration: underline;
	font-weight: inherit;
	color: #666;
}
a:link, a:link * {}
a:visited, a:visited * {}
a:hover, a:active, a:hover *, a:active * {
	color: #333;
}
a img {
	background: #333;
	border: none;
}
a:link img {}
a:visited img {}
a:hover img, active img {}

/* structural resets */
html, body, div, span, applet, object, iframe,
h, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, fieldset, label, legend, input, textarea, select,
table, caption, tbody, tfoot, thead, tr, th, td {}

* {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	outline: none;
	
	vertical-align: baseline;
}
html, body {
	width: 100%;
	height: 100%;
}
body {
	background: #000;
}
div {
/*	position: relative;*/
}
table { /* tables still need 'cellspacing="0"' in the markup */
	margin: 10px;
	border: 2px ridge #ddd;
	border-collapse: collapse;
	border-spacing: 0;
}
thead {
	font-weight: bold;
}
tbody {}
tfoot{}
tr {}
td {
	border: 1px solid #ddd;
	padding: 1px 3px;
	
	vertical-align: top;
	white-space: normal;
}
thead td, tfoot td, .thead td {
	padding: 5px 3px;
	
	vertical-align: middle;
	white-space: normal;
}
tfoot td {
	font-size: smaller;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 10px;
}
h1, h2, h3, h4, h5, h6 { 
	font-weight: bold;
}
h1 {
	font-size: xx-large;
}
h2 {
	font-size: x-large;
}
h3 {
	font-size: large;
}
h4 {
	font-size: medium;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
ol, ul {
	margin: 10px 10px 10px 8px;
}
ul {}
ol {
	margin-left: 15px;
}
li {
	margin: 0 0 5px 23px;
	
	text-indent: -15px;
}
ul li {
	list-style: none inside url('../img/cms/ul_li.png');
}
ol li {
	text-indent: 0;
}
ul ul {
	margin-left: 16px;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before {
	content: '&ldquo;';
}
q:after {
	content: '&rdquo;';
}
q:before, q:after {
	content: none;
}
input, textarea, select {
	border: 2px inset #ccc;
	background: #fff;
}
input[type=submit] {
	border-style: outset;
	background: #c0c0c0;
}
input[type=image] {
	border: none;
}
label:after {
  content: ':';
}
:focus {
	outline: none;
}
ins {
	text-decoration: overline;
}
del {
	text-decoration: line-through;
}
img {
	display: inline;
}

/* content classes */

.fl {float: left;}
.fr {float: right;}
.fc {clear: both;}

.jl, .jl * {text-align: left;}
.jr, .jr * {text-align: right;}
.jc, .jc * {text-align: center;}
.jj, .jj * {text-align: justify;}

.sn {font-weight: normal;}
.sb {font-weight: bold;}
.si {font-style: italic;}

.even {}
.odd {
	background: #111;
}

/* structural classes */

.scroll {
	border: 1px solid #666;
	padding: 2px;
}
.scroll > * {
	overflow: auto;
	height: 100%;
	width: 100%;
}

.pullquote {
	display: inline;
	margin: 6px 11px 0 10px;
	background: url('../img/cms/quote_open.png') no-repeat scroll left top;
}
.pullquote > *:first-child {
	display: none;
}
.pullquote > * {
	display: block;
	background: url('../img/cms/quote_close.png') no-repeat scroll right bottom;
	padding: 0 20px 0 20px;
	
	text-align: center !important;
}

hr, .hr {
	clear: both;
	display: block;
	height: 1px;
	margin: 10px 0;
	border-top: 2px solid #bbb;
	
	font-size: 1px; /* required for ie6 */
}

/* override default 'current' nav item */
.current_page_item {
	background-color: transparent !important;
}
.current_page_item, .current_page_parent {
	font-weight: bold !important;
}
.current_page_item ul li, .current_page_parent ul li {
	font-weight: normal;
}

/* removes specific page from the main navigation */
.page-item-999 {display: none !important;}

/* classes */
.aligncenter {
	display: block;
	margin: 0 auto;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.wp-caption {
	margin:10px;
	padding: 10px;
	background: #ccc;
	border: 1px solid #666;
	
	text-align: center;
}
