/* Minification failed. Returning unminified contents.
(728,1): run-time error CSS1036: Expected expression, found '}'
 */
/* =============================================================================
   HTML5 element display
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 * Known limitation: IE6 will not apply style for 'audio[controls]'
 */

audio[controls],
canvas,
video {
    display: inline-block;
    *display: inline;
    zoom: 1;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Keeps page centred in all browsers regardless of content height
 * 3. Removes Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    font-size: 100%; /* 1 */
    overflow-y: scroll; /* 2 */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* 3 */
    -webkit-text-size-adjust: 100%; /* 4 */
    -ms-text-size-adjust: 100%; /* 4 */
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
    margin: 0;
}

/* 
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

body,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
		margin:0;
		vertical-align:top;
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

embed,
object {
 outline: none;
}


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Heading (h1, h2, h3, h4, h5, h6)
 */
h1,h2,h3,h4,h5,h6{
  font-weight:700;
  padding:0;
}
h1{
  font-size:2.5em;
	line-height:1.2em;
  margin:0 0 0.75em;
}
h2{
  font-size:1.5em;
	line-height:1.2em;
  margin:0 0 1em;
}
h3{
  font-size:1.1666em;
  margin:0 0 1.286em;
}
h4{
  font-size:1em;
  margin:0 0 1.5em;
}
h5{
  font-size:0.8333em;
  margin:0 0 1em;
}
h6{
  font-size:0.666em;
  margin:0 0 2.25em;
}


p {
	padding:0;
	margin:0 0 1.5em 0;
	}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3/4, S4/5, Chrome
*/

b, 
strong { 
    font-weight:700;
}

blockquote {
    margin: 1em 40px;
		quotes:none;
		border-left: 1px solid #CCCCCC;
		font-style: italic;
		margin-left: 2em;
		padding:1.5em;
		margin-bottom:1.5em;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

mark {
    background: #ff0;
    color: #000;
}

/*
 * Corrects font family set oddly in IE6, S5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
		font-family:"Courier New", Courier, monospace, serif;
		margin:0 0 1.5em;
		border-left: 1px solid #CCCCCC;
		margin-left: 2em;
		padding-left: 2em;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
    quotes:none;
		font-style: italic;
}

/* 2 */

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

ul,
ol {
    margin: 1em 0;
    padding: 0 0 0 40px;
}

ol {
	list-style-type:decimal;
	list-style-position:outside;
	}

ul {
	list-style-type:none;
	padding:0;
	margin:0 0 1.5em 0;
	}
	ul li {
		vertical-align:top;
		padding:0 0 .5em 0;
		margin:0 0 0 14px;
		list-style-type:square;
		}
		ul ul {
			margin:.5em 0 -.5em 1em;
			padding:0;
			}

dd {
    margin: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
}


/* =============================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
    margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
    margin: 0;
}

/*
 * Define consistent margin and padding
 */

fieldset {
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects alignment displayed oddly in IE6/7
 */

legend {
    border: 0; /* 1 */
    *margin-left: -7px; /* 2 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, F3/4, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * 1. Addresses FF3/4 setting line-height using !important in the UA stylesheet
 * 2. Corrects inner spacing displayed oddly in IE6/7
 */

button,
input {
    line-height: normal; /* 1 */
    *overflow: visible;  /* 2 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 */

button,
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
}

/*
 * Addresses box sizing set to content-box in IE8/9
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Corrects inner padding displayed oddly in S5, Chrome on OSX
 */

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Corrects inner padding and border displayed oddly in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and aligment in all browsers
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
		font:101%/1.5em Arial, Helvetica, sans-serif;
}


/* =============================================================================
   Tables
   ========================================================================== */

/* 
 * Remove most spacing between table cells
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* General
---------------------------------------- */
html, body
{
    min-width: 960px;
}
body
{
    background-color: #f3f3f5; /*background-color: #eac893; 	background-repeat:repeat; 	background-position:0 0; 	background-attachment:fixed; 	background-image:url(images/body-pattern.gif);*/ /*color: #8f8f8f;*/ /*font: 100%/1.125em Arial, Helvetica, sans-serif;*/
    position: relative;
}

::selection
{
    background: #F52887;
    color: #fff;
}
::-moz-selection
{
    background: #F52887;
    color: #fff;
}
img::selection
{
    background: transparent;
}
img::-moz-selection
{
    background: transparent;
}
body
{
    -webkit-tap-highlight-color: #F52887; /*color: #fff;*/
}

#main
{
    background-color: #f3f3f5;
    width: 980px;
    margin: 0 auto; /*	box-shadow:0 0 5px rgba(0,0,0,.3); 	-moz-box-shadow:0 0 5px rgba(0,0,0,.3); 	-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);*/
}

/* Links */
a, a:hover
{
    color: #F52887;
}
.btn.colr {
	color: White;
	background-color: #F52887;
	background-image: none;
	text-shadow: none;
}
.btn.colr:hover {
	background-color: #FF1867;
}

/* Headings */
h1, h2, h3, h4, h5, h6
{
    font-weight: bold;
    margin: 0 0 1em 0;
    line-height: normal;
}

.page h3
{
    color: #222222;
    font-size: 16px;
    line-height: 1.2em;
    text-transform: uppercase;
    font-family: 'Droid Sans' , sans-serif;
    font-weight: bold;
}
.page h5
{
    font-size: 12px;
}


/* List styling */
dl dt
{
    background: url(images/list-arrow.gif) no-repeat 0 3px;
    padding: 0 0 3px 32px;
    margin-bottom: .2em;
    font-size: 18px;
    line-height: 1.2em;
    color: #191919;
}
dl dd
{
    padding: 0 0 0 32px;
    margin: 0 0 1.5em 0;
}

ul li
{
    list-style-type: none;
    padding: 0 0 6px 0;
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #F52887;
    border-bottom: 1px solid #dbdbdb;
}
ul li a
{
    color: #222222;
    text-decoration: none;
}
ul li a:hover
{
    text-decoration: underline;
}
ul ul
{
    border-top: 1px solid #dbdbdb;
    padding-top: 6px;
    margin-bottom: -12px;
}

.ab-top-menu li
{
    border: none !important;
}

/* Header
---------------------------------------- */
#header
{
    height: 230px;
    position: relative;
    z-index: 99;
    background-repeat: repeat-x;
    background-position: 0 0;
    background-image: url(images/tail-top.gif);
}
body.home #header
{
    margin-bottom: 20px;
}

.grid_item
{
    margin-bottom: 20px !important;
}


/* Content
---------------------------------------- */
.primary_content_wrap
{
    position: relative;
    z-index: 1;
    padding-bottom: 47px;
    overflow: hidden;
}

#content
{
    padding: 26px 0 0 0;
}
#content.left
{
    float: right !important;
}


#video-cycle
{
    margin-top: -20px;
}
#video-cycle .video-item
{
    display: inline-block;
    width: 220px;
    margin: 20px 16px 0 0;
    vertical-align: top;
    box-shadow: 0 2px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.1);
}
#video-cycle .video-item:nth-child(3n)
{
    margin-right: 0;
}
#video-cycle .video-item.nomargin
{
    margin-right: 0;
}
#video-cycle .video-item .featured-thumbnail
{
    float: none;
    margin: 0;
    overflow: hidden;
}
#video-cycle .video-item .featured-thumbnail .play, .post-holder.video .play, .recent-posts .format-video .play
{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-position: 0 0;
    background-image: url(images/hover-bg.png);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
#video-cycle .video-item .featured-thumbnail a:hover .play, .post-holder.video a:hover .play, .recent-posts .format-video a:hover .play
{
    opacity: 1;
}
#video-cycle .video-item .featured-thumbnail .play .button, .post-holder.video .play .button, .recent-posts .format-video .play .button
{
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -30px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url(images/button-play.png);
}
.no-opacity #video-cycle .video-item .featured-thumbnail .play, .no-opacity .post-holder.video .play, .no-opacity .recent-posts .format-video .play
{
    visibility: hidden;
}
.no-opacity #video-cycle .video-item .featured-thumbnail a:hover .play, .no-opacity .post-holder.video a:hover .play, .no-opacity .recent-posts .format-video a:hover .play
{
    visibility: visible;
}
#video-cycle .video-item .row-1
{
    background-color: #FFF;
    border-left: 1px solid #cfcfcf;
    border-right: 1px solid #d5d5d5;
    padding: 9px 19px 14px 19px;
}
#video-cycle .video-item .row-1 .actions-row {
	text-align: center;
	margin-bottom: 15px;
}
#video-cycle .video-item .row-1 .actions-row .btn {
	display: block;
	width: 180px;
	padding-left: 0;
	padding-right: 0;
}
#video-cycle .video-item .row-1 .actions-row .next {
	margin-top: 10px;
	width: 178px;
}
#video-cycle .video-item .row-1 .actions-row .btn-facebook-share
{
    height: 30px;
    margin-top: 10px;
    display: block;
    cursor: pointer;
}
#video-cycle .video-item .row-1 .actions-row .btn-facebook-share img {
	height: 30px;
}
.actions-voted {
	display: none;
}
.voted .actions-not-voted, .user-voted .actions-not-voted {
	display: none;
}
.user-voted .voted .actions-voted 
{
    display: block;
}
.user-voted .row-1 {
	padding-bottom: 
}
.video-item .desc {
	position: relative;
}
#video-cycle .video-item .row-2
{
    border-top: 1px solid #cfcfcf;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #b4b4b4;
    border-left: 1px solid #cacaca;
    height: 28px;
    width: 178px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url(images/meta-bg.gif);
    font-size: 12px;
    line-height: 26px;
    font-style: italic;
    font-family: Georgia, "Times New Roman" , Times, serif;
    color: #222222;
    padding: 0 20px;
}
#video-cycle .video-item .row-2 .rating
{
    float: left;
    margin-right: 16px;
}
#video-cycle .video-item .row-2 .views
{
    float: left;
    padding-left: 21px;
    background-repeat: no-repeat;
    background-position: 0 8px;
    background-image: url(images/icon-views.png);
}
#video-cycle .video-item .row-2 .link
{
    float: right;
    margin-top: 9px;
    position: relative;
    width: 15px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url(images/link-bg.png?v=20130204);
}
#video-cycle .video-item .row-2 .link:hover
{
    background-position: 0 -12px;
}

#video-cycle .video-item h4
{
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
#video-cycle .video-item h4 span
{
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    display: inline-block;
}
#video-cycle .video-item h4, #video-cycle .video-item h4 a
{
    color: #000;
    text-decoration: none;
}
#video-cycle .video-item h4 a:hover
{
    text-decoration: underline;
}
#video-cycle .video-item .terms
{
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
#video-cycle .video-item .terms, #video-cycle .video-item .terms a
{
    color: #8f8f8f;
    text-decoration: none;
    font-size: 12px;
}
#video-cycle .video-item .terms a:hover
{
    text-decoration: underline;
}

#watch_action
{
    float: left;
    width: 100%;
    height: 100%;
}

#watch_action img
{
    border: none !important;
    padding: 0px !important;
}

#watch_action #watch_position
{
    width: auto;
}

#action_like, #action_unlike
{
    float: left;
    width: auto;
}

#action_unlike
{
    padding-left: 7px;
}

.like, .unlike, .status-img, .status-msg
{
    float: left;
}

/*.jlk {
	cursor:pointer !important;	
}*/

.lc, .unlc
{
    float: left;
    width: auto;
    padding: 0 0 0 6px;
    font-size: 12px;
    line-height: 18px;
}
.votes-caption {
	float: left;
	width: auto;
	font-size: 12px;
	line-height: 18px;
}

.lc
{
    color: green;
}
.unlc
{
    color: red;
}

.status
{
    color: gray;
    padding: 0 7px 0 7px;
    font-size: 14px;
    line-height: 18px;
}
.status .status_msg
{
    width: auto;
    margin: 0 3px 0 0;
}
.loading-img
{
    background: url(../images/loading.gif) no-repeat scroll 0 0 !important;
    padding: 0px 5px;
}
.loading img
{
    margin-top: 5px;
}
.video-item.pending .loading
{
    display: block !important;
}

.video-item .loading
{
    float: left;
}
.video-item .thank-you {
	float: right;
	margin-top: 0px;
	margin-left: 10px;
}
.video-item.voted .thank-you {
	display: block !important;
}
.video-item .thank-you a {
	cursor: pointer;
	display: inline-block;
	margin-left: 5px;
}
.video-item .thank-you img {
	width: 20px;
	vertical-align: middle;
}

.lbg-style1, .unlbg-style1
{
    width: 14px;
    height: 16px;
}
.lbg-style1
{
    background: url(../images/thumb_up1.png) no-repeat left top !important;
}

.lbg-style1:hover, .voted .lbg-style1, .statistics.pending .lbg-style1
{
    background: url(../images/thumb_up1.png) no-repeat left bottom !important;
}

.unlbg-style1
{
    background: url(../images/thumb_down1.png) no-repeat left top !important;
}

.unlbg-style1:hover
{
    background: url(../images/thumb_down1.png) no-repeat left bottom !important;
}

#watch_action
{
    width: auto !important;
    margin-top: 4px;
}
#watch_action .status
{
    display: none;
}
#watch_action .lc
{
    color: #222222 !important;
    font-size: 12px !important;
}
#watch_action .lbg-style1.jlk
{
    width: 16px;
}
#watch_action a.like
{
    cursor: pointer;
}

.title h3
{
    font-size: 16px;
    color: #222222;
    text-transform: uppercase;
    font-family: 'Droid Sans' , sans-serif;
    font-weight: bold;
}


/* Page */
.page
{
}
#page-content
{
}
#page-meta
{
}

/* Featured thumbnail */
.featured-thumbnail
{
    position: relative;
    float: left;
    margin: 5px 20px 10px 0;
}
.featured-thumbnail img
{
    float: left;
    width: 220px;
    height: 165px;
}

/* Small thumbnail */
.featured-thumbnail.small img
{
    padding: 4px;
}

/* Large thumbnail */
.featured-thumbnail.large
{
    margin-right: 0;
    overflow: hidden;
    margin-bottom: 1.5em;
}
.featured-thumbnail.large img
{
    max-width: 100%;
    height: auto;
}

/* Page Navigaton */
.pagination
{
    clear: both;
    padding: 0;
    position: relative;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    margin: auto;
}
body.home .pagination
{
    margin-top: 31px;
}
.pagination ul
{
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.pagination ul li
{
    display: inline-block;
    margin: 0 3px;
    padding: 0;
    text-align: center;
    color: #666666;
    border-bottom: 2px solid #cccccc;
}
.pagination ul li a
{
    display: inline-block;
    width: 34px;
    height: 32px;
    line-height: 34px;
    color: #666666;
    text-decoration: none;
}

.pagination ul li.active, .pagination ul li:hover
{
    background: #F52887;
    color: #fff;
    font-weight: bold;
    border: none;
}
.pagination ul li.active a, .pagination ul li:hover a
{
    height: 34px;
    color: #fff;
}
.pagination ul li:hover
{
    font-weight: normal;
}
.pagination ul li.disabled
{
    opacity: 0.5;
}
.pagination ul li.disabled:hover
{
    background: none;
    color: #666;
    border-bottom: 2px solid #cccccc;
    font-weight: normal;
}
.pagination ul li.disabled:hover a
{
    color: #666;
    height: 32px;
}

/* Sidebar
---------------------------------------- */
#sidebar
{
    padding: 26px 0 0 0;
}
#widget-sidebar
{
}
.widget
{
    margin-bottom: 42px;
}
.widget h3
{
    font-size: 16px;
    color: #222222;
    text-transform: uppercase;
    font-family: 'Droid Sans' , sans-serif;
    font-weight: bold;
    line-height: 1.2em;
    margin-bottom: 14px;
}

#competitions li
{
    line-height: 18px;
}
#sidebar .cat-item.selected
{
    font-weight: bold;
    text-decoration: none;
}
#sidebar .cat-item.selected a
{
    text-decoration: none;
}
.fleft
{
    float: left;
}
.fright
{
    float: right;
}
.clear
{
    clear: both;
}

.wrapper
{
    width: 100%;
    overflow: hidden;
}
.extra-wrap
{
    overflow: hidden;
}


/* Clear Floated Elements */
.clear
{
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after
{
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix
{
    display: inline-block;
}

* html .clearfix
{
    height: 1%;
}

.clearfix
{
    display: block;
}

.error
{
    color: #e80c4d;
}

.required:after
{
    content: " *";
    font-weight: bold;
    color: red;
}

/* styles for validation helpers */
.field-validation-error
{
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid
{
    display: none;
}

input.input-validation-error
{
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error
{
    border: 0 none;
}

.validation-summary-errors
{
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid
{
    display: none;
}

/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
  min-width: 960px;
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}



.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12 {
	position:relative;
}


/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .grid_1 {
	width:60px;
}

.container_12 .grid_2 {
	width:140px;
}

.container_12 .grid_3 {
	width:220px;
}

.container_12 .grid_4 {
	width:300px;
}

.container_12 .grid_5 {
	width:380px;
}

.container_12 .grid_6 {
	width:460px;
}

.container_12 .grid_7 {
	width:540px;
}

.container_12 .grid_8 {
	width:620px;
}

.container_12 .grid_9 {
	width:700px;
}

.container_12 .grid_10 {
	width:780px;
}

.container_12 .grid_11 {
	width:860px;
}

.container_12 .grid_12 {
	width:940px;
}




/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .prefix_1 {
	padding-left:80px;
}

.container_12 .prefix_2 {
	padding-left:160px;
}

.container_12 .prefix_3 {
	padding-left:240px;
}

.container_12 .prefix_4 {
	padding-left:320px;
}

.container_12 .prefix_5 {
	padding-left:400px;
}

.container_12 .prefix_6 {
	padding-left:480px;
}

.container_12 .prefix_7 {
	padding-left:560px;
}

.container_12 .prefix_8 {
	padding-left:640px;
}

.container_12 .prefix_9 {
	padding-left:720px;
}

.container_12 .prefix_10 {
	padding-left:800px;
}

.container_12 .prefix_11 {
	padding-left:880px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .suffix_1 {
	padding-right:80px;
}

.container_12 .suffix_2 {
	padding-right:160px;
}

.container_12 .suffix_3 {
	padding-right:240px;
}

.container_12 .suffix_4 {
	padding-right:320px;
}

.container_12 .suffix_5 {
	padding-right:400px;
}

.container_12 .suffix_6 {
	padding-right:480px;
}

.container_12 .suffix_7 {
	padding-right:560px;
}

.container_12 .suffix_8 {
	padding-right:640px;
}

.container_12 .suffix_9 {
	padding-right:720px;
}

.container_12 .suffix_10 {
	padding-right:800px;
}

.container_12 .suffix_11 {
	padding-right:880px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .push_1 {
	left:80px;
}

.container_12 .push_2 {
	left:160px;
}

.container_12 .push_3 {
	left:240px;
}

.container_12 .push_4 {
	left:320px;
}

.container_12 .push_5 {
	left:400px;
}

.container_12 .push_6 {
	left:480px;
}

.container_12 .push_7 {
	left:560px;
}

.container_12 .push_8 {
	left:640px;
}

.container_12 .push_9 {
	left:720px;
}

.container_12 .push_10 {
	left:800px;
}

.container_12 .push_11 {
	left:880px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .pull_1 {
	left:-80px;
}

.container_12 .pull_2 {
	left:-160px;
}

.container_12 .pull_3 {
	left:-240px;
}

.container_12 .pull_4 {
	left:-320px;
}

.container_12 .pull_5 {
	left:-400px;
}

.container_12 .pull_6 {
	left:-480px;
}

.container_12 .pull_7 {
	left:-560px;
}

.container_12 .pull_8 {
	left:-640px;
}

.container_12 .pull_9 {
	left:-720px;
}

.container_12 .pull_10 {
	left:-800px;
}

.container_12 .pull_11 {
	left:-880px;
}




/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
  zoom: 1;
}
