//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

namespace Css{
	
	/// <summary>
	/// Represents the style of border around an element.
	/// Currently only solid colour is supported.
	/// </summary>
	
	public static class BorderStyle{
		
		public const int Solid=1;
		public const int Dashed=2; // Currently ignored.
		
	}
	
}