@charset "UTF-8";
/*
Theme Name: Portfolio shadow grey
Theme URI: http://benrellick.com
Description: Second iteration of a theme for my portfolio site
Version: 2.0
Author: Ben Rellick
Author URI: http://benrellick.com
*/

body {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: #444 url(images/shadow.png) top center repeat-y;
	text-align: center;
	color: #444;
	}
/* Zero all margins, padding, and outlines */
* {
	margin: 0;
	padding: 0;
	outline: 0;
	}

/*===========================
Begin Typography and Colors
=============================*/

/* Colors footer text */
#footer p {
	color: #666;
	}
p {
	line-height: 150%;
	margin-bottom: 10px;
	}

/*=================
Begin Structure
===================*/

/* Centered header */
#header {
	position: relative;
	width: 950px;
	height: 175px;
	background: #000 url(images/banner2.jpg);
	margin: 0 auto;
	text-align: left;
	}
#content {
	width: 890px;
	padding: 30px;
	background: #fff;
	margin: 0 auto;
	text-align: left;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	}
#footer {
	width: 950px;
	height: 20px;
	margin: 0 auto;
	padding: 20px 0px;
	}
/* Navigation menu at the bottom left of header */
#navigation {
	position: absolute;
	bottom: 0;
	height: 25px;
	padding: 10px 0px 0px 20px;
	}
/* "Add This" button at bottom right of header */
#navigation2 {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 25px;
	padding: 10px 20px 0px 0px;
	text-decoration: none;
	}
#spacer {
	clear: both;
	}
#flashcontent {
	margin: 0 auto;
	padding-top: 11px;
	}
#columna {
	float: left;
	width: 390px;
	padding: 10px 20px;
	text-align: justify;
	}
#columnb {
	float: right;
	margin: 10px;
	background: #eee;
	padding: 20px;
	width: 400px;
	font-size: 13px;
	text-align: justify;
	}
/*===============
Begin Navigation
=================*/

/* Inline navigation list */
#header ul {
	list-style: none inside;
	font-size: 12px;
	text-transform: uppercase;
	}
/* Inline navigation list */
#header li {
	display: inline;
	}
/* Makes nav bold and defines padding and margins */
#header li a {
	color: #fff;
	font: 12px Arial, sans-serif;
	font-weight: bold;
	text-decoration: none;
	padding: 4px 4px 12px;
	margin: 0px 4px;
	}
/* Nav turns black with white text on mouseover */
#header li a:hover{
	color: black;
	background: #fff;
	}
/* Locks tab when on that page */
#home .home,
#about .about,
#portfolio .portfolio,
#contact .contact {
	color: #000;
	background: #fff;
	}

/*==============
Begin Headers
===============*/

/* Grouped heading fonts and margins */
h1, h2, h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0px 0px 10px;
	color: #000;
	}
h1 {
	font-size: 24pt;
	}
h2 {
	font-size: 16pt;
	}
h3 {
	font-size: 12pt;
	font-weight: bold;
	}
/* Hides "Ben Rellick" in order to display the banner */
#header h1 {
	text-indent: -9999px;
	}
	
/*==============
Begin Images
================*/

/* Remove borders in IE, Firefox */
img {
	border: 0;
	}
/* Align image right */
img.alignright {
	float: right;
	}
/* Align image left */
img.alignleft {
	float:left;
	}
/* Center image */
img.centered {
	margin: auto;
	}
#home img.alignright {
	border: #eee solid 20px;
	margin: 10px;
	-moz-border-radius-topright: 20px;
	-webkit-border-top-right-radius: 20px;
	}
/*===========
Begin Lists
===========*/

/*=================
Begin Form Elements
==================*/

/* Makes the stars in the form blue */
.required {
	color: #336699;
	}
/* Adds a 10px margin to the top and bottom of form fields */
input, textarea {
	margin: 10px 0px 10px;
	}

/*==========
Begin Links
============*/

a {
	color: #336699;
	text-decoration: none;
	}
a:hover {
	text-decoration: underline;
	}