/* 
Lucky Blue
base.css created by Nathan Cooper - nathanpcooper@gmail.com
*/

/* --------------------------------------------------------------- */
/* float */
/* --------------------------------------------------------------- */

.fLeft { float: left; } /* left */
.fRigh { float: right;} /* right */

/* --------------------------------------------------------------- */
/* position */
/* --------------------------------------------------------------- */

.pRela { position: relative; } /* relative */
.pAbso { position: absolute; } /* absolute */

/* --------------------------------------------------------------- */
/* margin */
/* --------------------------------------------------------------- */

.mT5 { margin-top: 5px; } /* 5px */
.mT10 { margin-top: 10px; } /* 10px */
.mR5 { margin-right: 5px; } /* 5px */
.mR10 { margin-right: 10px; } /* 10px */
.mB5 { margin-bottom: 5px; } /* 5px */
.mB10 { margin-bottom: 10px; } /* 10px */
.mL5 { margin-left: 5px; } /* 5px */
.mL10 { margin-left: 10px; } /* 10px */

/* --------------------------------------------------------------- */
/* padding */
/* --------------------------------------------------------------- */

.pL5 { padding-left: 5px; }	  /* 5px */
.pL10 { padding-left: 10px; } /* 10px */

/* --------------------------------------------------------------- */
/* alignment */
/* --------------------------------------------------------------- */

.aLeft { text-align: left; }	/* left */
.aRigh { text-align: right; }	/* right */
.aCent { text-align: center; }	/* center */
.aJust { text-align: justify; }	/* justify */

.aCentDiv { display: block; margin-left: auto; margin-right: auto; }	/* center */ 

/* --------------------------------------------------------------- */
/* text */
/* --------------------------------------------------------------- */

p { margin-bottom: 8px; font: 12px arial, helvetica, sans-serif; color: #000; line-height: 16px; }

h1 { font-size: 20px; } /* 20px */ 
h2 { font-size: 18px; } /* 18px */ 
h3 { font-size: 16px; } /* 16px */ 
h4 { font-size: 15px; } /* 15px */ 
h5 { font-size: 14px; } /* 14px */ 
h6 { font-size: 13px; } /* 13px */ 

h1, h2, h3, h4, h5, h6 { margin: 4px 0; font-family: arial, helvetica, sans-serif; }

/* --------------------------------------------------------------- */
/* family */
/* --------------------------------------------------------------- */

.fSeri { font-family: "times new roman", times, serif; }
.fSans { font-family: arial, helvetica, sans-serif; }

/* --------------------------------------------------------------- */
/* color */
/* --------------------------------------------------------------- */

.c000 { color: #000; }
.c111 { color: #111; }
.c222 { color: #222; }
.c333 { color: #333; }
.c444 { color: #444; }
.c555 { color: #555; }
.c666 { color: #666; }
.c777 { color: #777; }
.c888 { color: #888; }
.c999 { color: #999; }
.caaa { color: #aaa; }
.cbbb { color: #bbb; }
.cccc { color: #ccc; }
.cddd { color: #ddd; }
.ceee { color: #eee; }
.cfff { color: #fff; }

/* --------------------------------------------------------------- */
/* weight */
/* --------------------------------------------------------------- */

.wBold { font-weight: bold; }

/* --------------------------------------------------------------- */
/* style */
/* --------------------------------------------------------------- */

.sItal { font-style: italic; }

/* --------------------------------------------------------------- */
/* case */
/* --------------------------------------------------------------- */

.uCase { text-transform: uppercase; }
.lCase { text-transform: lowercase; }

/* --------------------------------------------------------------- */
/* formatting */
/* --------------------------------------------------------------- */

b, strong { font-weight: bold; }
i, em { font-style: italic; }

/* --------------------------------------------------------------- */
/* links */
/* --------------------------------------------------------------- */

a, a:hover, a:active, a:visited { color: #ccc; }
	a:hover { text-decoration: none; }
	
.none { text-decoration: none; }
