/*Rounded Corner-Nifty corner. It is combined with the use of css (ctrl.css and round.css).*/
/*Nifty Corners Cube CSS by Alessandro Fulciniti
The following classes are added dinamically by javascript,
and their use should be avoided in the markup */

b.niftycorners,b.niftyfill{display:block}
b.niftycorners *{display:block;height: 1px;line-height:1px;font-size: 1px;
    overflow:hidden;border-style:solid;border-width: 0 1px}
/*normal*/
b.r1{margin: 0 3px;border-width: 0 2px}
b.r2{margin: 0 2px}
b.r3{margin: 0 1px}
b.r4{height: 2px}
b.rb1{margin: 0 8px;border-width:0 2px}
b.rb2{margin: 0 6px;border-width:0 2px}
b.rb3{margin: 0 5px}
b.rb4{margin: 0 4px}
b.rb5{margin: 0 3px}
b.rb6{margin: 0 2px}
b.rb7{margin: 0 1px;height:2px}
b.rb8{margin: 0;height:2px}
b.rs1{margin: 0 1px}
/*transparent inside*/
b.t1{border-width: 0 5px}
b.t2{border-width: 0 3px}
b.t3{border-width: 0 2px}
b.t4{height: 2px}
b.tb1{border-width: 0 10px}
b.tb2{border-width: 0 8px}
b.tb3{border-width: 0 6px}
b.tb4{border-width: 0 5px}
b.tb5{border-width: 0 4px}
b.tb6{border-width: 0 3px}
b.tb7{border-width: 0 2px;height:2px}
b.tb8{border-width: 0 1px;height:2px}
b.ts1{border-width: 0 2px}


/*
Example
1. Nifty("div#content,div#nav");
2. Nifty("ul#nav a","small transparent top"); 
3. Nifty("div#about li","tl bottom big fixed-height"); 
4. Nifty("div#content,div#nav","same-height"); 
5. Nifty("ul#split h3","top");
   Nifty("ul#split div","none same-height"); 
6. Nifty("div#container");
   Nifty("div#content,div#nav","same-height small");
   Nifty("div#header,div#footer","small");
   
FIRST PARAMETER
1. tag selector 
"p" "h2" 
2. id selector 
"div#header" "h2#about" 
3. class selector 
"div.news" "span.date" "p.comment" 
4. descendant selector (with id) 
"div#content h2" "div#menu a" 
5. descendant selector (with class) 
"ul.news li" "div.entry h4" 
6. grouping (any number and combination of the previous selectors) 
"h2,h3" "div#header,div#content,div#footer" "ul#menu li,div.entry li" 

SECOND PARAMETER
tl: top left corner 
tr: top right corner 
bl: bottom left corner 
br: bottom right corner 
top: upper corners 
bottom: lower corners 
left: left corners 
right: right corners 
all (default): all the four corners 
none: no corners will be rounded (to use for nifty columns) 
small: small corners (2px) 
normal (default): normal size corners (5px) 
big: big size corners (10px) 
transparent: inner transparent, alias corners will be obtained. This option activates automatically if the element to round does not have a background-color specified. 
fixed-height: to be applied when a fixed height is set via CSS 
same-height: Parameter for nifty columns: all elements identified by the CSS selector of the first parameter will have the same height. If the effect is needed without rounded corners, simply use this parameter in conjuction with the keyword none. 

*/