/*
Theme Name:	StartupsPulse
Theme URI:	http://www.startupspulse.com/
Description:	The theme for StartupsPulse.com
Author:		Hugh Nichols
Author URI:	http://www.startupspulse.com/
Version:	2.0
*/
/* ##########################################################################
		Information and Notes
		---------------------

"You can use shorthand properties. Using shorthand for margin, padding, border, background and font properties can save a lot of space."

margin:top right bottom left;                        (example > margin:1em 0 2em 0.5em;)

padding:top right bottom left;                       (example > padding:2em 0.7em 3em 0;)

border:width style color;                            (example > border:1px solid #000;)

background:color image repeat attachment position;   (example > background:#f00 url(background-image.gif) no-repeat fixed 0 0;)

font:style variant weight size/line-height family;   (example > font:italic small-caps bold 1em/140% "Lucida Grande",sans-serif;)

----------------------------------
"You can change capitalisation using CSS"

text-transform:uppercase;
----------------------------------

"You can mark external links automatically. Many people make use of the non-standard rel="external" relationship to indicate a link to an external site. However, adding that to each and every link is time consuming and and unnecessary. This style rule will place an north east arrow after any link on your site to an external site."

a[href^="http://"]:not([href*="smashingmagazine.com"])::after {
	content: "\2197";
}

http://www.smashingmagazine.com/2007/05/10/70-expert-ideas-for-better-css-coding/

#############################################################################
		Table of Contents
		-----------------

	- Structure
		- primary site structure (inc. divs and classes)
	- Navigation
		- top navbar
		- sidebar
	- Typography
		- paragraph, headings, and other miscellaneous font styles (such as small and strong)
	- Links
		- all the styling for anchor tags
	- Lists
		- lists (ul, ol, li...)
	- Images
		- images
	- Miscellaneous
		- any other elements that didn't fit into the rest of the sections
#############################################################################
		Colours used
		------------

           Dark grey (text) = #333333
Dark Blue (headings, links) = #000066
          Mid Blue (header) = #333399
Light blue (top navigation) = #CCCCFF
                   Mid grey = #666666
#############################################################################
############################################################################# */
/*		Structure
		---------                                                  */
body {
	/*background-color:#FAFAF7;*/
	background-color:#F0F0E6;
	color:#333;
	font:normal normal normal 80.01%/100% Verdana, Arial, sans-serif;
}