/*
===============================================================================
> PROTECTED UNDER CREATIVE COMMONS LICENSE

<rdf:RDF xmlns="http://web.resource.org/cc/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
   <dc:type rdf:resource="http://purl.org/dc/dcmitype/Interactive" />
   <license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" />
</Work>

<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/">
   <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
   <permits rdf:resource="http://web.resource.org/cc/Distribution" />
   <requires rdf:resource="http://web.resource.org/cc/Notice" />
   <requires rdf:resource="http://web.resource.org/cc/Attribution" />
   <prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />
   <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
   <requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
</License>

</rdf:RDF>
===============================================================================
> STYLE SHEET ATTRIBUTES
_______________________________________________________________________________
Box Properties
_______________________________________________________________________________
border		border-[top|bottom[right|left]
border-color	border-[top|bottom[right|left]-color
border-style	border-[top|bottom[right|left]-style
border-width	border-[top|bottom[right|left]-width
margin		margin-[top|bottom[right|left]
padding		padding-[top|bottom[right|left]
width
height
clear
float
_______________________________________________________________________________
Background & Color
_______________________________________________________________________________
background
background-color
background-attachment
background-image
background-position
background-repeat
color
_______________________________________________________________________________
Classification properties
_______________________________________________________________________________
display
list-style
list-style-type
list-style-image
list-style-position
white-space
_______________________________________________________________________________
Font properties
_______________________________________________________________________________
font
font-family
font-size
font-style
font-variant
font-weight
_______________________________________________________________________________
Text properties
_______________________________________________________________________________
letter-sapcing
text-align
text-indent
text-decoration
text-transform
line-height
vertical-align
word-spacing
===============================================================================
> SELECTOR'S SUBGROUP
_______________________________________________________________________________
Type			Exemple/Syntax				HTML/Comments
_______________________________________________________________________________
Class selector		p.narrow,p em.strong,.narrow		class="narow"
ID selector		p#special,p em#hot,#special		id="special"
Descendant selector	p em,p.narrow em,p.narrow em span	(parent)
Pseudo-elements		:first-letter
			:first-line
			:first-child				(CSS2)
			:link,:active,:visited,:hover
			:focus
			:lang
Attribute selector	[attributeName]		el w/attribute
			[attributeName=value]	el w/attribute=value
			[attributeName~=value]	el w/attribute in value
			[attributeName|=value]	el w/attribute starts w/value
Universal selector	*,*[align="middle"]
Child Selector		body > p, html > body	= descendant in direct relation
Adjacent sibling 	h1 + h2
===============================================================================
> SELECTOR'S SPECIFITY
_______________________________________________________________________________
Rule		#ID sel		#Other sel	#El by name in sel	Rating
_______________________________________________________________________________
em		0		0		1			1		
p em		0		0		2			2
div p em	0		0		3			3
em.hot		0		1		1			11
p em.hot	0		1		2			12
#hotstuff	1		0		0			100
===============================================================================
> LENGTH VALUE UNITS
_______________________________________________________________________________
Unit		Exemple		Desc
_______________________________________________________________________________
em		1.5em		Element's font height
ex		1ex		Element's font x-height
px		14px		Pixel
in		0.75in		Inch (absolute)
cm		5cm		Centimeter (absolute)
mm		55mm		Millimeter (absolute)
pt		10pt		Point (=1/72 Inch)
pc		1.5pc		Pica (=12 Points,=1/6 Inch)
===============================================================================
> POSITION ATTRIBUTES
_______________________________________________________________________________
CSS attribute	Values/Desc				Style prop (scripting)
_______________________________________________________________________________
position	absolute|fixed|relative|static|inherit	=
clip		rect(top right bottom left)		=
overflow	visible|hidden|scroll			N/A
visibility	visible|hidden|inherit			=
z-index		integer (back>>front)			zIndex
top		length					
right		length
bottom		length
left		length
		
IE Specific	pixel offset				pixelTop
							pixelRight
							pixelBottom
							pixelLeft
		offset in inherited units		posTop
							posRight
							posBottom
							posLeft
===============================================================================
*©©©©©
*©
*© ezman@daoldskool.org 4 daoldskool.org & kollectiveone.com
*©
*© http://kollectiveone.com/
*© http://daoldskool.org
*©
*© Under creativecommons licenses
*©
*©           Attribution
*©           Noncommercial
*©           Share Alike
*©
*© http://creativecommons.org/licenses/by-nc-sa/2.0/
*©
*©©©©©
===============================================================================
*/

/*
STRUCTURE			*
*/
body {
	font-size: normal;
}

/*
TEXT				*
*/
abbr {
}

acronym {
}

address {
}

blockquote {
}

br {
}

cite {
}

code {
}

dfn {
}

div {
}

em {
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

kbd {
}

p {
}

pre {
}

q {
}

samp {
}

span {
}

strong {
}

var {
}

/*
HYPERTEXT			*
*/
a {
}

/*
LIST				*
*/
dl {
}

dt {
}

dd {
}

ol {
}

ul {
}

li {
}

/*
PRESENTATION			XHTML 1.1
*/
b {
}

big {
}

hr {
}

i {
}

small {
}

sub {
}

sup {
}

tt {
}

/*
EDIT				XHTML 1.1
*/
del {
}

ins {
}

/*
BIDIRECTIONAL TEXT		XHTML 1.1
*/
bdo {
}

/*
FORMS
*/
/*				XHTML Basic	*/
form {
}

input {
}

label {
}

select {
}

option {
}

textarea {
}

/*				XHTML 1.1	*/
button {
}

fieldset {
}

legend {
}

optgroup {
}

/*
TABLES
*/
/*				XHTML Basic	*/
caption {
}

table {
}

tr {
}

th {
}

td {
}

/*				XHTML 1.1	*/
col {
}

colgroup {
}

tbody {
}

tfoot {
}

thead {
}

/*
IMAGE
*/
img {
	border: #ffffff 0px none;
}

