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

using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using Css;
using Dom;


namespace Css{
	
	/// <summary>
	/// The current groups of floating elements.
	/// </summary>
	
	public class FloatingElements{
		
		/// <summary>Floating elements on the left.</summary>
		public LayoutBox Left;
		/// <summary>Floating elements on the right.</summary>
		public LayoutBox Right;
		
	}
	
}