/*
--------------------------------------------------
sockenstein.com GLOBAL STYLES
Last revised 7 December 2009
--------------------------------------------------
*/
/*
--------------------------------------------------
Color palette:
--------------------------------------------------

PMS 186 #E31937
PMS 186 50% #F09383

PMS 368 #7BC143
PMS 368 50% #BBDC9B

PMS 3105 #8AD3DF
PMS 3105 50% #C4E8ED

PMS 254 #91278F
PMS 254 50% #BC8CBF



Dark Green
PMS 7484 #00653A
PMS 7484 67% #328A6A
PMS 7484 50% #64A187
PMS 7484 33% #93BCAA

Light Green
PMS 374 #C8DF8E
PMS 374 50% #E1EDC4

Aqua
PMS 3105 #8AD3DF
PMS 3105 67% #B1E0E8

Very dark grey #4C4C4C
White #FFF

*/
/*
--------------------------------------------------
GLOBAL RESET
--------------------------------------------------
undohtml.css (CC) 2004 Tantek Celik. Some Rights Reserved.
*/
:link, :visited { text-decoration: none }
ul, ol	{ list-style: none }
h1, h2, h3, h4, h5, h6, pre, code { font-size: 1em }
body, html, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, p, blockquote, img { margin: 0; padding: 0 }
a img, :link img, :visited img { border: none }
address { font-style: normal }

/*
--------------------------------------------------
DEFAULT HTML STYLES
--------------------------------------------------
This section concerns generalizations and common elements
*/
body	{
		color: #4C4C4C; /* Very dark grey */
		font-size: 68.75%; /* Use percentage to avoid bug in Win IE */
		font-family: Verdana, Arial, sans-serif;
		text-align: center; /* horizontal centering in Win IE */
		min-width: 82em; /* < Win IE7 ignores this */
		background: #FFF; /* White */
		}

/* Links */
a		{
		text-decoration: none;
		padding: .1em 0;
		}
a:link, a:visited {
		color: #00653A; /* PMS 7484 */
		border-bottom: .1em dotted #7BC143; /* PMS 368 */
		background-color: transparent;
		}
a:focus {
		outline: none; /* most browsers do not support yet support this property */
		-moz-outline: none; /* remove focus outline in Mozilla browsers */
		}
a:hover {
		color: #7BC143; /* PMS 368 */
		border-bottom: .1em dashed #00653A; /* PMS 7484 */
		}
a:active {
		color: #8AD3DF; /* PMS 3105 */
		border-bottom: .1em dotted #E31937; /* PMS 186 */
		}
a[name] { /* remove bottom border from internal hyperlinks */
		border-bottom: none;
		}

/* Headers */
h1, h2, h3, h4, h5, h6 {
		color: #E31937; /* PMS 186 */
		color: #00653A; /* PMS 7484 */
		font-size: 1em;
		font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", Verdana, Arial, sans-serif;
		line-height: 2;
		text-transform: uppercase;
		letter-spacing: .1em;
		margin: 1em 0;
		}
h1		{
		color: #91278F; /* PMS 254 */
		font-size: 2em;
		line-height: 1;
		text-transform: none;
		letter-spacing: normal;
		margin: 0 0 1em;
		}
h2, h3	{
		font-size: 1.2727em;
		line-height: 1.571429;
		margin: .78571429em 0;
		font-size: 1.0909em;
		line-height: 1.8333;
		margin: .9167em 0;
		}

p		{
		margin-bottom: 1.5em;
		}
blockquote {
		margin: 1em;
		}
address {
		margin: 1em 0;
		}

/* Lists */
ul ul, ol ol, ul ol { /* nested list indent */
		margin-left: 1.5em;
		}

/* Forms */
form	{
		margin: 0;
		}
fieldset {
		padding: 1em 2em 2em;
		border: .1em dashed #E31937; /* PMS 186 */
		}
legend {
		color: #E31937; /* PMS 186 */
		font: bold 1.0909em/1.8333 "Trebuchet MS", "Gill Sans", "Gill Sans MT", Verdana, Arial, sans-serif;
		text-transform: uppercase;
		letter-spacing: .1em;
		padding: 0 .4583em;
		}
label	{
		cursor: pointer;
		}
input[type="text"] {
		color: #696969; /* DimGray */
		font: 1em/1 Verdana, sans-serif;
		padding-left: .375em;
		}
input[type="text"]:focus {
		color: #4C4C4C; /* Very dark grey */
		background-color: #C4E8ED; /* PMS 3105 50% */
		}

abbr, acronym {
		font-size: .9em;
		letter-spacing: .1em;
		border-bottom: .1em solid #BC8CBF; /* PMS 254 50% */
		cursor: help;
		}
dfn		{
		border-bottom: .1em solid #BC8CBF; /* PMS 254 50% */
		cursor: help;
		}

/*
--------------------------------------------------
PAGE STRUCTURE
--------------------------------------------------
This section defines layout elements and respective environmental formatting
*/
#wrapper {
		text-align: left; /* reset Win IE workaround */
		width: 82em; /* 902px */
		position: relative;
		margin: 0 auto 2em; /* standard CSS horizontal centering */
		background: transparent;
		}

/* Banner -- identity + navigation */
#banner {
		position: relative;
		width: 100%;
		height: 25em;
		background: transparent url(http://www.sockenstein.com/images/utility/background_banner.jpg) no-repeat left top;
		}
#banner #logo {
		position: absolute;
		top: 31px;
		left: 126px;
		z-index: 0;
		}
#banner #logo a {
		width: 462px; /* actual 467px */
		height: 110px; /* actual 114px */
		display: block;
		border-bottom: none;
		background: transparent url(http://www.sockenstein.com/images/logos/logo_sockenstein.png) no-repeat; /* make !important to test placement */
		background: transparent;
		}
#banner #logo a:link, #banner #logo a:visited {
		}
#banner #logo a:hover {
		}
#banner #logo a:active {
		}
#banner #logo span {
		display: none;
		}

#container { /* grouping for content + sidebar */
		line-height: 2;
		background: transparent;
		}

/* Main content */
#content {
		width: 60em; /* 640px */
		position: relative;
		float: right;
		margin: 2em 0;
		background: #FFF;
		}

/* Headings */
#content h1 span:first-child {
		font-size: 18px;
		text-transform: uppercase;
		letter-spacing: .1em;
		}
#content h1 span:first-child:after {
		content: " \22EE ";
		}

/* Image inset */
#content .inset.left {
		float: left;
		margin-right: 1em;
		}
#content .inset.right {
		float: right;
		margin-left: 1em;
		}
#content .inset img { /* photo-frame effect */
		}

/* Swapped content */
#hold	{
		display: none;
		}
#swap h3 + p:first-line {
		color: #808080; /* Gray */
		font-weight: bold;
		}

/* Slideshow */
#photodiv {
		position: relative;
		background-repeat: no-repeat;
		}
#photoimg {
		}

/* Multiple-entry page */
#content .entry {
		clear: both;
		}

/* Columns */
/* 2-column layout */
#content .column {
		width: 29em;
		float: left;
		margin-right: 2em;
		background: transparent;
		}
#content .column.right { /* rightmost column -- matches selectors with both class .column and .right */
		float: left;
		margin-right: 0;
		}

/* Gallery */
#gallery_product li {
		width: 13em;
		float: left;
		margin: 0 1em 1em;
		}
#gallery_product li img {
		display: block;
		width: 13em;
		margin-bottom: 1em;
		}
#gallery_product li img:hover {
		opacity: .5; /* CSS3 property not widely supported */
		-moz-opacity: .5; /* Required for Mozilla browsers */
		filter:alpha(opacity=50); /* Required for IE browsers */
		}
#gallery_product li img:active {
		opacity: 1; /* CSS3 property not widely supported */
		-moz-opacity: 1; /* Required for Mozilla browsers */
		filter:alpha(opacity=100); /* Required for IE browsers */
		}

#gallery_product li h2, #gallery_product li h4 {
		text-align: center;
		text-transform: lowercase;
		}
#gallery_product li p {
		display: none;
		}

/* Sidebar */
#sidebar {
		width: 20em; /*  */
		position: relative;
		float: left;
		margin: 2em 2em 0 0;
		background: transparent;
		}
#sidebar h3, #sidebar h4, #sidebar h5, #sidebar h6 {
		font-size: 1.0909em;
		line-height: 1.8333;
		text-transform: uppercase;
		letter-spacing: .1em;
		margin: .9167em 0;
		}
#sidebar div.subsection {
		margin-bottom: 1em;
		padding-bottom: 1em;
		border-bottom: .1em dashed #E31937; /* PMS 186 */
		}
#sidebar div.subsection p {
		}
#sidebar #news_brief h4 {
		text-transform: none;
		letter-spacing: normal;
		margin: 0 0 .9167em;
		}
#sidebar #news_brief h5 {
		font-size: 1em;
		line-height: 2;
		font-weight: normal;
		margin-bottom: 2em 0 0;
		}

/* Footer */
#footer {
		position: relative;
		clear: both;
		margin: 0 0 0 22em;
		list-style: none;
		}
#footer li {
		padding: 0 .5em;
		display: inline;
		background: url(http://www.sockenstein.com/images/utility/pipe.gif) no-repeat right;
		}
#footer li.first {
		padding-left: 0;
		}
#footer li.last {
		background: none;
		}
#footer li.byline { /* use for site-design credit */
		font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", Verdana, Arial, sans-serif;
		text-transform: uppercase;
		letter-spacing: .1em;
		position: absolute;
		right: 0;
		bottom: 0;
		background: none;
		}
#footer li.byline span {
		font-weight: bold;
		}

/*	Utility elements */
.hidden { /* completely remove from layout */
		display: none !important;
		}
.display	{
		display: block !important;
		}
.invisible { /* does not display but remains in layout flow */
		visibility: hidden;
		}
.clip	{
		overflow: hidden;
		}
.clearance {
		height: 0;
		clear: both;
		}
.clear	{
		clear: both;
		}

/*
--------------------------------------------------
NAVIGATION
--------------------------------------------------
*/
/* Main navigation */
#nav	{
		float: left;
		margin: 12.5em 1px 0;
		list-style: none;
		background: transparent;
		}
#nav li {
		width: 150px;
		height: 145px; /* @13em */
		float: left;
		background: transparent;
		}
#nav li a span {
		display: none;
		}
#nav a	{
		display: block;
		width: 150px;
		height: 145px;
		border-bottom: none;
		background: transparent url(http://www.sockenstein.com/images/utility/background_nav.png) no-repeat left top;
		}
#nav a#nav_home {
		}
#nav a#nav_products {
		background-position: 20% 0%;
		}
#nav a#nav_faq {
		background-position: 40% 0%;
		}
#nav a#nav_blog {
		background-position: 60% 0%;
		}
#nav a#nav_about {
		background-position: 80% 0%;
		}
#nav a#nav_contact {
		background-position: 100% 0%;
		}

#nav a.first {
		}
#nav a:link, #nav a:visited {
		}
#nav a:hover {
		}
#nav a:active {
		}
#nav a.selected {
		}

/*
--------------------------------------------------
FORMATTING STYLES
--------------------------------------------------
Positional, text, font, and miscellaneous formatting not defined in environmental contexts
*/
/* Positioning elements */
.center {
		text-align: center;
		}
.flush-right {
		text-align: right;
		}
.justify {
		text-align: justify;
		}		
.inline {
		display: inline;
		}
.float-left {
		float: left;
		}
.float-right {
		float: right;
		}
.all-pad {
		padding: .75em;
		}
.top-pad { /* also use to provide paragraph spacing in IE Win */
		padding-top: 1.5em;
		}
.left-pad {
		padding: 0 0 .75em 1.5em;
		}
.right-pad {
		padding: 0 1.5em .75em 0;
		}
.bottom-pad { /* also use to provide paragraph spacing in IE Win */
		padding-bottom: 1.5em;
		}
.trim	{
		margin: 0;
		padding: 0;
		}

/* Fonts */
.italic {
		font-style: italic;
		}
.bold	{
		font-weight: bold;
		}
.normal {
		font-variant: normal !important;
		font-style: normal !important;
		font-weight: normal !important;
		text-transform: none !important;
		letter-spacing: normal !important;
		}
.small {
		font-size: 12px;
		}
.smaller {
		font-size: smaller;
		}
.caps	{
		font-size: .9em;
		text-transform: uppercase;
		letter-spacing: .1em;
		}
.caption {
		font-style: italic;
		font-size: 11px;
		line-height: 1.63636;
		}
.posted {
		font-style: italic;
		font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", Verdana, Arial, sans-serif;
		}
.tags {
		font-style: normal;
		}
.tags span {
		color: #FF4500; /* OrangeRed */
		font-weight: bold;
		font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", Verdana, Arial, sans-serif;
		text-transform: uppercase;
		letter-spacing: .1em;
		}
.tags dfn {
		color: #000080; /* Navy */
		border-bottom: none;
		background-color: #D4D4E9 !important; /* Navy 25% */
		}

/* Typography */
#content h1 + p:first-line, #content .inset + p:first-line {
		color: #7BC143; /* PMS 368 */
		font-weight: bold;
		}
#content h1 + p > span:first-child, #content h2 + p > span:first-child, #content #swap h3 + p > span:first-child { /* all caps highlight */
		font-size: .83333em;
		text-transform: uppercase;
		letter-spacing: .1em;
		}
#content p.ornament:first-line {
		color: #696969; /* DimGray */
		font-weight: bold;
		}

/* Images */
img.inset {
		display: block;
		padding: .375em !important;
		border: 1px solid #DDD; /* Very light grey */
		background-color: #f5f5f5; /* WhiteSmoke */
		}
img.inset.right {
		float: right;
		margin: 0 0 0 .75em;
		}
img.inset.left {
		float: left;
		margin: 0 .75em 0 0;
		}
img.inset.logo {
		height: auto !important;
		width: auto !important;
		margin-top: 0 !important;
		padding: 0 !important;
		border: none;
		background: none;
		}

/* Highlights */
.highlight {
		padding: .375em .75em;
		border: 1px solid #66779E; /* PMS 295 50% */
		border-bottom-width: .375em;
		background: #E2E6E9; /* SlateGray 20% */
		}

/* Links */
a.img:link, a.img:visited, a.img:hover, a.img:active,
#sidebar a.img:link, #sidebar a.img:visited, #sidebar a.img:hover, #sidebar a.img:active {
		padding: 0 !important;
		border-bottom: none !important;
		background: none !important;
		}
.link {
		width: 13px;
		height: 13px;
		display: block;
		padding: 0;
		border-bottom: none !important;
		cursor: n-resize;
		}
.top.link, .btm.link {
		background: transparent url(http://www.sockenstein.com/images/utility/icon_vlink.gif) no-repeat top left;
		}
.more.link, .less.link {
		background: transparent url(http://www.sockenstein.com/images/utility/icon_button.gif) no-repeat top left;
		}
.btm.link, .less.link {
		background-position: top right;
		}
.top.link:hover, .more.link:hover {
		background-position: center left;
		}
.top.link:active, .more.link:active {
		background-position: bottom left;
		}
.btm.link:hover, .less.link:hover {
		background-position: center right;
		}
.btm.link:active, .less.link:active {
		background-position: bottom right;
		}
.entry .top.link, .entry .btm.link, .entry .more.link, .entry .less.link {
		float: right;
		position: relative;
		top: .5em;
		}
.info	{
		cursor: help;
		}
.photos {
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/camera.gif) no-repeat center left;
		}
.enlarge {
		padding-left: 1.875em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_magnifying_glass.png) no-repeat left center;
		}
.pdf	{
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_pdf.gif) no-repeat left;
		}
.rss	{
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_rss.png) no-repeat left;
		}
.share	{
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_share.png) no-repeat left;
		}
.fb		{
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_facebook.gif) no-repeat left;
		}
.flickr {
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_flickr.png) no-repeat left;
		}
.twitter {
		padding-left: 2em;
		background: transparent url(http://www.sockenstein.com/images/utility/icon_twitter.png) no-repeat left;
		}

/* Lists */
/* N.B. May need to declare float value to make lists indent properly */
.square {
		margin: 1em 0 1em 1.25em;
		list-style: square;
		}
.decimal {
		list-style-type: decimal;
		margin-left: 1.5em;
		}
.inline li {
		margin-left: 1em;
		display: inline;
		}
.inline li:first-child, .inline li.first {
		margin-left: 0;
		}

/* Forms */
input.field {
		color: #696969; /* DimGray */
		font: 1em/1 Verdana, sans-serif;
		padding-left: .375em;
		}
input.field:focus {
		color: #4C4C4C; /* Very dark grey */
		background-color: #C4E8ED; /* PMS 3105 50% */
		}
#sidebar input.field {
		width: 12.125em;
		}

#twitter_update_list li {
		margin: 1em 0;
		}

/* Commerce */
#purchase {
		}
#purchase input {
		margin-top: 1em;
		}
.price span {
		font-weight: bold;
		}
.comment {
		font-style: italic;
		}