 /* =====================================================
 	Main.CSS Stylesheet
	
	**** READ FIRST ****
	
	- With the exception of the reset styles, selectors 
	  should be in alphabetical order for easier scanning.
	
	- CSS properties are also in alphabetical order for
	  easier scanning.
	
	- Stylesheet is split up into 4 different sections.
		- Typography
		- Layout
		- Styling
		- Helper Classes
	
	- Colors:
	  Header quote: #1c1c1c
	  Top navigation: #333333
	  Top navigation hover: #5EB5B8
	  Portfolio Grid Arrow Blue: #a4dcde
========================================================*/
 
  /* RESET
===================================================== */ 
 
html, body, div, span, applet, object, iframe,
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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td 
{
	color: #000;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus 
{
	outline: 0;
}
body 
{
	line-height: 1;
	color: #000;
	background: #fff;
}
ol, ul 
{
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table 
{
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td 
{
	text-align: left;
	font-weight: normal;
}
blockquote:before, 
blockquote:after,
q:before, 
q:after 
{
	content: "";
}
blockquote, q 
{
	quotes: "" "";
}
/* =====================================================
   Typography (font-family, font-size, text-align, etc.)
   ===================================================== */
   
/* -- General ------------------------------------------ */
body 
{
	font-size: 10px;
}

p,blockquote
{
	font-family: arial, verdana, sans-serif;
	font-size: 1.2em;
	font-size-adjust: none;
	letter-spacing: 0;
	line-height: 1.2em;
	word-spacing: normal;
}
blockquote
{
	font-family: georgia, times new roman, serif;
	font-style: italic
}
h2
{
	color: #000;
	font-family: arial, verdana, sans-serif;
	font-size: 1.95em;
	font-weight: normal;
	letter-spacing: 0;
}
h3
{
	color: #5eb5b8;
	font-family: arial, verdana, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
}
/* -- Blog ------------------------------------ */
#blog #content .primary p
{
	color: #555656;
	font-size: 13px;
}
#blog #content .primary h2
{
	clear: both;
}
#blog #content .primary .date_comments
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll 0 -218px;
	font-family: arial, sans-serif;
	font-size: 11px;
	height: 50px;
	padding-top: 20px;
	width: 500px;
}
#blog #content .primary .date_comments h4
{
	color: #555656;
	float: left;
	font-weight: bold;
}
#blog #content .primary .date_comments h5,
#blog #content .primary .date_comments a
{
	color: #8ed2d4;
	float: right;
	font-style: italic;
	margin-top: -4px;
}
#blog #content .primary .date_comments img
{
	margin-right: 5px;
}
/* -- Brand ------------------------------------ */
#brand h1
{
	text-indent: -9999px;
}
/* -- Contact Page ----------------------------------------*/
#contact_page #content .primary h2
{
	margin: 0 0 0 0;
}
#contact_page #content .primary h4
{
	color: #5EB5B8;
	font-family: Arial, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	margin: 20px 0 5px 0;
}
#contact_page #content .primary p
{
	margin: 0 0 5px 0;
}
#contact_page #content .primary p span
{
	color: #5EB5B8;
	font-family: Arial, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
}
#contact_page #content .primary p a
{
	color: #5EB5B8;
}
/* -- Header Quote ------------------------------------ */
#header #quote p
{
	font-size: 2em;
	font-style: italic;
	text-align: right;
}

#portfolio_grid .boxcaption h3
{
	color: #fff;
	font-family: georgia, times new roman, serif;
	margin: 5px;
}
#portfolio_grid .boxcaption p
{
	font-family: georgia, serif;
	margin: 5px;
}

/* -- Product Detail Page ----------------------------- */
#portfolio_detail
{
	
}
#portfolio_detail #content p
{
	font-weight: normal;
}
#portfolio_detail #content h4
{
	margin-bottom: 20px;
}
#portfolio_detail #content h4 img
{
	float: left;
}
#portfolio_detail #content h4 a
{
	display: block;
	font-family: arial, verdana, sans-serif;
	font-size: 14px;
	font-weight: normal;
	letter-spacing: -0.01em;
	margin-left: 5px;
	padding-left: 12px;
	text-decoration: none;
	width: 0;
}
#portfolio_detail #content h4 a img
{
	float: none;
}
#portfolio_detail #content .primary a
{
	font-family: arial, verdana, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	letter-spacing: -0.01em;
	text-decoration: none;
}
#portfolio_detail #content .primary p.name
{
	font-size: 1.2em;
	font-style: normal;
}
#portfolio_detail #content .primary p.name span
{
	font-weight: bold;
}
#portfolio_detail #content .primary ul#services li
{
	font-family: arial, verdana, sans-serif;
	font-size: 1.3em;
	letter-spacing: -.01em;
}
/* -- Services --------------------------------------- */
#services_page #content #expertise h1
{
	font-family: Arial, sans-serif;
	font-size: 1.8em;
	font-weight: bold;
}
#services_page #content #expertise ul#services li
{
	font-family: arial, verdana, sans-serif;
	font-size: 1.3em;
	letter-spacing: -.01em;
}
/* -------- Top Navigation ---------- */
#top_navigation ul li a
{
	font-family: arial, verdana, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
	text-decoration: none;
}
#top_navigation ul li a:hover
{
	font-weight: bold;
}

/* ============================================================
   LAYOUT (float, margin, padding, position, height, width)
   ============================================================ */

/* -- General ------------------------------------------------- */
p
{
	margin: 10px 0;
}   
blockquote
{
	margin: 0 0 20px 0;
}
h3
{
	margin: 10px 0 10px 0;
}
#header a.prev
{
	background: transparent url(http://copiousinc.com/images/global/prev_btn.png) no-repeat scroll 0 0;
	float: right;
	height: 36px;
	/*margin: 23% 10px 0 40px;*/
	width: 36px;
}
#header a.next
{
	background: transparent url(http://copiousinc.com/images/global/next_btn.png) no-repeat scroll 0 0;
	float: right;
	height: 36px;
	margin-left: 15px;
	/*margin: 23% 0 0 10px;*/
	width: 36px;
}
/* -- Blog -------------------------------------------------- */
#blog #content .primary
{
	float: left;
	margin:0 50px 0 0;
	width: 552px;
}
#blog #content .primary .post .tags_author
{
	height: 35px;
	padding-top: 10px;
}
#blog #content .primary .post .tags_author h4,
#blog #content .primary .post .tags_author h5
{
	font-family: arial, sans-serif;
	font-size: 11px;
	font-style: italic;
}
#blog #content .primary .post .tags_author h4
{
	color: #555656;
	float: left;
	margin-top: -4px;
}
#blog #content .primary .post .tags_author h4 img
{
	margin-right: 5px;
	margin-top: 3px;
}
#blog #content .primary .post .tags_author h5
{
	color: #000;
	float: right;
}
#blog #content #secondary
{
	float: left;
	width: 333px;
}
#blog #content #secondary .searchBtn
{
	background: transparent url(/images/blog/search_btn.gif) no-repeat scroll 0 0;
	border: 0 none;
	cursor: pointer;
	display: block;
	float: left;
	height: 35px;
	text-indent: -9999px;
	width: 68px;
}
#blog #content #secondary #searchBox
{
	background: #f5f5f5;
	border: 1px solid #e9e6e6;
	height: 26px;
	width: 260px;
}
#blog #content #secondary #sub_nav
{
	margin: 60px 0 0;
}
#blog #content #secondary #sub_nav #tabs
{
	border-bottom: 2px solid #dbdbdb;
	display: block;
	float: left;
	height: 31px;
}
#blog #content #secondary #sub_nav #tabs ul
{

}
#blog #content #secondary #sub_nav #tabs li
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll -4px -174px;
	float: left;
	margin-left: 6px;
	padding: 12px 0;
	text-align: center;
	width: 107px;
}
#blog #content #secondary #sub_nav #tabs li.first
{
	margin: 0;
}
#blog #content #secondary #sub_nav #tabs li a
{
	display: block;
	margin-top: -12px;
	padding: 10px 0;
	width: 107px;
}
#blog #content #secondary #sub_nav #tabs li a.active
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll -130px -174px;
}
#blog #content #secondary #sub_nav #tabs a:hover
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll -130px -174px;
}
#blog #content #secondary #sub_nav #tabs li a:hover
{

}
#blog #content #secondary #sub_nav #slides
{
	position: relative;
	overflow: hidden;
	clear: both;
}
#blog #content #secondary #sub_nav #slides div#items
{
	width: 20000em;
	position: relative;
	clear: both;
	margin: 0;
	padding: 0;
}
#blog #content #secondary #sub_nav #slides div#items div
{
	float: left;
	display: block;
	width: 333px;
	padding-bottom: 10px;
}
#blog #content #secondary #sub_nav #slides div#items div h2,
#blog #content #secondary #sub_nav #slides div#items div p,
#blog #content #secondary #sub_nav #slides div#items div a
{
	padding: 0 10px;
}
#blog #content #secondary #sub_nav #slides div#items div h2
{
	font-size: 1.4em;
	font-weight: bold;
	margin-top: 20px;
}
#blog #content #secondary #sub_nav #slides div#items div p
{
	color: #555656;
	line-height: 17px;
	margin: 5px 0;
	padding-right: 50px;
}
#blog #content #secondary #sub_nav #slides div#items div a
{
	color: #70B6B9;
	font-family: arial, sans-serif;
	font-size: 1.4em;
}
#blog #content #secondary #sub_nav #slides div#items li
{
	border-bottom: 1px solid #dbdbdb;
	padding-bottom: 20px;
}

/* -- Brand -------------------------------------------------- */
#brand
{
	float: left;
	height: 100px;
}
#brand h1
{
	height: 50px;
	margin: 10px 0 0 0;
	width: 250px;
}
#brand h1 a
{
	display: block;
	height: 50px;
	width: 250px;
}

/* -- Container ---------------------------------------------- */
.container
{
	margin: 0 auto;
	padding: 10px;
	width: 940px;
}
/* -- Contact Page ----------------------------------------*/
#contact_page #content .primary
{
	float: left;
	margin:0 85px 0 0;
	width: 505px;
}
#contact_page #content #expertise
{
	float: left;
	width: 325px;
}
#contact_page #content #expertise ul#services
{
	float: left;
	width: 330px;
}
#contact_page #content #expertise ul#services .column
{
	float: left;
	width: 115px;
}
#contact_page #content #expertise ul#services li
{
	margin: 0 0 3px 10px;
}
/* -- Content ------------------------------------------------ */
#content
{
	float: left;
	margin: 40px 0 0 0;
}

/* -- Header ------------------------------------------------- */
#header
{
	
}
 #header h2
{
	display: block;
	float: left;
	width: 250px;
}
#header h2 img 
{
	margin: 20px 0 15px 0;
}
#header #quote
{
	float: right;
}
#header #quote img
{
	margin: 20px 0 0 0;
}
#header #single_item_gallery
{
	clear: left;
	float: left;
	height: 470px;
	overflow: hidden;
	position: relative;
	width: 924px;
}
#header #single_item_gallery #photos
{	
	clear: both;
	cursor: pointer;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 20000em;
}
#header #single_item_gallery #photos img
{
	background: transparent url(/images/global/portfolio_detail_img_bg.png) no-repeat scroll 0 0;
	height: 384px;
	margin-right: 10px;
	padding: 15px;
	width: 924px;
}
/* -- Footer --------------------------- */
#footer
{
	background: url('/images/global/footer_bg.jpg') no-repeat scroll 0 0;
	float: left;
	margin: 20px 0 0;
	height: 390px;
	width: 940px;
}
#footer p a
{
	color: #70b6b9;
	font-weight: bold;
	margin-left: 5px;
}
#footer .address
{
	float: left;
	margin: 60px 0 0 4px;
	width: 62.35%;
}
#footer .address p
{
	margin: 6px 0;
}
#footer .new_biz
{
	margin: 65px 0 0;
}
#footer .new_biz p
{
	line-height: 1.6em;
}
#footer #newsletter
{
	float: right;
	margin-top: 30px;
}
#footer #newsletter p
{
	color: #555656;
	display: inline;
}
#footer #newsletter input
{

}
#footer #newsletter input.news_signup
{
	background: transparent url("/images/global/newsletter_submit.jpg") no-repeat scroll 0 0;
	border: 0 none;
	cursor: pointer;
	display: block;
	float: right;
	height: 20px;
	margin-left: 5px;
	margin-top: 2px;
	text-indent: -9999px;
	width: 53px;
}
#footer #newsletter input#newsletterField
{
	background: #f5f5f5;
	border: 1px solid #e9e6e6;
	height: 18px;
	width: 180px;
	-moz-border-radius: 3px;
}
/* -- Portfolio Grid Page --------------------------- */
#portfolio_grid #content 
{
	margin: 0;
}
#portfolio_grid #content .sub_nav
{
	float: right;
	margin-top: 15px;
	
}
#portfolio_grid #content .sub_nav #brand
{
	height: auto;
}
#portfolio_grid #content .sub_nav ul
{
	
}
#portfolio_grid #content .sub_nav ul li
{
	display: block;
	float: left;
	margin-right: 15px;
}
#portfolio_grid #content .sub_nav ul li a
{
	color: #000;
	display: block;
	float: left;
	font-family: arial;
	font-size: 1.4em;
	font-weight: bold;
	height: 40px;
	text-decoration: none;
	width: auto;
	
}
#portfolio_grid #content .sub_nav ul li a p
{
	margin: 0;
	padding: 3px 6px;
}
#portfolio_grid #content .sub_nav ul li a span
{
	display: inline-block;
	float: none;
	height: 18px;
	width: 26px;
	overflow: auto;
	/*left: 40%;
	width: 20px;
	position: relative;
	overflow: auto;*/
	
}
#portfolio_grid #content .sub_nav ul li a:hover p
{
	-moz-border-radius: 3px;
	background-color: #a4dcde;
	color: #fff;
	display: block;
}
#portfolio_grid #content .sub_nav ul li a:hover
{
	background: transparent url(/images/global/grid_arrow_new.gif) no-repeat scroll center 20px;
}
#portfolio_grid #content .sub_nav ul li a.active p
{
	-moz-border-radius: 3px;
	background-color: #a4dcde;
	color: #fff;
	display: block;
}
#portfolio_grid #content .sub_nav ul li a.active
{
	background: transparent url(/images/global/grid_arrow_new.gif) no-repeat scroll center 20px;
}
#portfolio_grid #content #portfolio_gallery
{
	float: left;
	height: 665px;
	margin: 10px 0 0 0;
	padding: 0;
	width: 960px;
}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid
{

}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li
{
	border: 1px solid #f1f1f1;
	display: block;
	float: left;
	height: 148px;
	margin: 10px 30px 10px 0;
	overflow: hidden;
	padding: 0;
	position: relative;
}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li a
{
	height: 140px;
	margin: 4px;
	overflow:hidden;
	
}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li a span
{
	display: block;
	height: 140px;
	margin-top: 0;
	overflow: hidden;
	position: relative;
	width: 200px;
}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li a span img
{
	/*margin-top: -140px;*/
	position: relative;
}
#portfolio_grid .boxcaption
{
	background: #000000;
	float: left;
	height: 55px;
	position: relative;
	top: 140px;
	width: 200px;
}
/* -- Portfolio Detail ----------------------------------------*/
#portfolio_detail #content
{
	float: left;
	margin: 15px 0 0 0;
}
#portfolio_detail #content p
{
	margin: 15px 0 15px 0;
}
#portfolio_detail #content .primary
{
	float: left;
	width: 295px;
}
#portfolio_detail #content .primary ul#services
{
	width: 330px;
}
#portfolio_detail #content .primary ul#services .column
{
	float: left;
	width: 115px;
}
#portfolio_detail #content .primary ul#services li
{
	margin: 0 0 3px 10px;
}
#portfolio_detail #content a.prev
{
	background: transparent url(/images/global/prev_btn.png) no-repeat scroll 0 0;
	float: left;
	height: 36px;
	margin: 23% 10px 0 40px;
	width: 36px;
}
#portfolio_detail #content a.next
{
	background: transparent url(/images/global/next_btn.png) no-repeat scroll 0 0;
	float: left;
	height: 36px;
	margin: 23% 0 0 10px;
	width: 36px;
}
#portfolio_detail #content #single_item_gallery
{
	float: left;
	height: 470px;
	overflow: hidden;
	position: relative;
	width: 510px;
}
#portfolio_detail #content #single_item_gallery #photos
{	
	clear: both;
	cursor: default;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 20000em;
}
#portfolio_detail #content #single_item_gallery #photos img
{
	background: transparent url(/images/global/portfolio_detail_img_bg.png) no-repeat scroll 0 0;
	margin-right: 10px;
	padding: 10px 15px 15px;
}
/* -- Services Page ----------------------------------------*/
#services_page #content .primary
{
	float: left;
	margin:0 85px 0 0;
	width: 505px;
}
#services_page #content #expertise ul#services
{
	float: left;
	width: 330px;
}
#services_page #content #expertise ul#services .column
{
	float: left;
	width: 115px;
}
#services_page #content #expertise ul#services li
{
	margin: 0 0 3px 10px;
}
#services_page #content .primary .demoReelHD
{
	background: url(/images/services/HDbtn3.jpg) no-repeat scroll 0 0;
	cursor: pointer;
	float: right;
	height: 40px;
	width: 154px;
}
#services_page #content .primary .demoReelHD h1
{
	text-indent: -9999px;
}

/* -------- Top Navigation ---------- */
#top_navigation
{
	float: right;
	margin: 10px 0 0 0;
}
#top_navigation ul
{
	text-align: right;
}
#top_navigation ul li
{
	display: inline;
	margin: 0;
}
#top_navigation ul li.last
{
	margin: 0 0 0 0;
}
#top_navigation ul li a
{
	display: block;
	float: left;
	margin-left: 30px;
}

/* =====================================================
   STYLING (color, borders, background, etc.)
   ===================================================== */
   
/* -- General ------------------------------------------ */
div
{
	/*border: 1px solid;*/
}
blockquote
{
	color: #333;
}

a.prev
{
	background: transparent url(http://copiousinc.com/images/global/prev_btn.png) no-repeat scroll 0 0;
	cursor: pointer;
}
a.next
{
	background: transparent url(http://copiousinc.com/images/global/next_btn.png) no-repeat scroll 0 0;
	cursor: pointer;
}
#header a.prev:hover
{
	background: transparent url(http://copiousinc.com/images/global/prev_btn_hover.png) no-repeat scroll 0 0;
}
#header a.next:hover
{
	background: transparent url(http://copiousinc.com/images/global/next_btn_hover.png) no-repeat scroll 0 0;
}
/* -- Brand ------------------------------------------- */
#brand h1
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll 0 -72px;
}

/* -- Container ------------------------------------------- */
.container
{
	background: transparent url(/images/global/body_bg.png) no-repeat scroll 70px 0;
}
/* -- Footer ------------------------------------ */
#footer .clients
{
	height: 60px;
	margin-left: 115px;
	margin-top: 135px;
	width: 830px;
}
#footer .clients ul
{
	height: 60px;
	width: 830px;
}
#footer .clients ul li
{
	float: left;
	height: 50px;
	margin: 5px;
	width: 100px;
}
#footer .clients ul li a
{
	background: transparent url(../images/1x1.png) repeat scroll;
	display: block;
	height: 50px;
	width: 100px;
}
#footer .clients ul li#business_oregon,
#footer .clients ul li#business_oregon a
{
	height: 40px;
	width: 90px;
}
#footer .clients ul li#business_oregon
{
	margin-left: 20px;
}
#footer .clients ul li#adidas,
#footer .clients ul li#adidas a
{
	height: 40px;
	width: 60px;
}
#footer .clients ul li#adidas
{
	margin-left: 25px;
}
#footer .clients ul li#unitus,
#footer .clients ul li#unitus a
{
	height: 40px;
	width: 80px;
}
#footer .clients ul li#unitus
{
	margin-left: 25px;
}
#footer .clients ul li#mcmenamins,
#footer .clients ul li#mcmenamins a
{
	height: 40px;
	width: 110px;
}
#footer .clients ul li#mcmenamins
{
	margin-left: 25px;
}
#footer .clients ul li#goodwill,
#footer .clients ul li#goodwill a
{
	height: 45px;
	width: 75px;
}
#footer .clients ul li#goodwill
{
	margin-left: 25px;
}
#footer .clients ul li#nike,
#footer .clients ul li#nike a
{
	height: 40px;
	width: 80px;
}
#footer .clients ul li#nike
{
	margin-left: 25px;
}
#footer .clients ul li#nike a
{
	cursor: default;
}
#footer .clients ul li#quickbooks,
#footer .clients ul li#quickbooks a
{
	height: 35px;
	width: 112px;
}
#footer .clients ul li#quickbooks
{
	margin-left: 12px;
}
/* -- Header Quote ------------------------------------ */
#header #quote p
{
	color: #1c1c1c;
}
/* -- Portfolio Grid Page --------------------------- */
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li img
{
	
}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li a
{
	color: #777;
	display: block;
	text-decoration: none;
}
#portfolio_grid #content #portfolio_gallery #photos ul.image-grid li a:hover
{
	background: #333;
}
/* -- Portfolio Detail Page --------------------------- */
#portfolio_detail #content
{
	/*border-top: 1px solid;*/
}
#portfolio_detail #content h4 a
{
	background: url(/images/global/buttons.png) no-repeat scroll -2px -3px;
	color: #000;
}
#portfolio_detail #content h4 a:hover
{
	background: url(/images/global/buttons.png) no-repeat scroll -15px -3px;
	color: #5EB5B8;
}
#portfolio_detail #content .primary a
{
	color: #000;
}
#portfolio_detail #content .primary a:hover
{
	color: #5EB5B8;
}
#portfolio_detail #content a.prev
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll -84px -25px;
	cursor: pointer;
}
#portfolio_detail #content a.next
{
	background: transparent url(/images/global/buttons.png) no-repeat scroll -2px -25px;
	cursor: pointer;
}
#portfolio_detail #content a.prev:hover
{
	background: transparent url(http://copiousinc.com/images/global/prev_btn_hover.png) no-repeat scroll 0 0;
}
#portfolio_detail #content a.next:hover
{
	background: transparent url(http://copiousinc.com/images/global/next_btn_hover.png) no-repeat scroll 0 0;
}
#content ul#services
{
	list-style-position: inside;
	list-style-type: disc;
}
#portfolio_detail #content ul#services li
{
}

/* -- Top Navigation ----------------------------------- */
#top_navigation ul li a
{
	color: #333;
}
#top_navigation ul li a.active
{
	color: #5EB5B8;
}
#top_navigation ul li a:hover
{
	color: #5EB5B8;
}
/* =====================================================
   Helper Classes
   ===================================================== */
.constrain 
{
	width: 100%;
}
.clear
{
	clear: both;
}
.active
{
	
}
.fancy-letter
{
	display: block;
	float: left;
	font-size: 1.3em;
}
.first
{
	margin: 0;
}
.last
{
	margin: 0 0 0 0;
}