/* ***************** rounded corners for KoL wiki ******************* */
/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */

@-moz-document domain(kol.coldfront.net) #p-cactions ul li, #p-cactions ul li a {  
  -moz-border-radius-topleft: 0.6em;
  -moz-border-radius-topright: 0.6em;
}
@-moz-document domain(kol.coldfront.net) #content { 
  -moz-border-radius-topleft: 0.6em; 
  -moz-border-radius-bottomleft: 0.6em;
}
@-moz-document domain(kol.coldfront.net) div.pBody {
  -moz-border-radius-topright: 0.6em;
  -moz-border-radius-bottomright: 0.6em;
}

/* same following the css3 draft specs, any browsers supporting this? */
@-moz-document domain(kol.coldfront.net) #p-cactions ul li, #p-cactions ul li a {  
  border-radius-topleft: 0.6em;
  border-radius-topright: 0.6em;
}
@-moz-document domain(kol.coldfront.net) #content { 
  border-radius-topleft: 0.6em;
  border-radius-bottomleft: 0.6em;
}
@-moz-document domain(kol.coldfront.net) div.pBody {
  border-radius-topright: 0.6em;
  border-radius-bottomright: 0.6em;
}

@-moz-document domain(kol.coldfront.net) {
	}
	
	
#ca-nstab-main, #ca-talk, #ca-edit, #ca-history, #ca-move, #ca-watch {
	-moz-border-radius-topright: 0.6em;
	-moz-border-radius-bottomright: 0.6em;
	border-radius-topright: 0.6em;
	border-radius-bottomright: 0.6em;
}
/* ********* end rounded corners ************* */

