/// <summary>
        /// Load Wall Style
        /// </summary>
        /// <param name="factory"></param>
        /// <param name="project"></param>
        /// <returns></returns>
		private IEnumerable<RecSectionStyleStd> GetWallStyles( string factory, string project )
		{
			// Load Wall Style
            var wallStyleSvc = new ProjectManager();
			var wallStyles = wallStyleSvc.LoadWallStyleStd( factory, project );
			var styles = new List<RecSectionStyleStd>();
			foreach( var ss in wallStyles )
			{
				var rec = new RecSectionStyleStd
				{
 					Factory = ss.Factory,
					Project = ss.Project,

 					ElementType = ss.ElementType,
					Name = ss.Name,

 					SectionType = "",
					Description = ss.Description,
				};
				styles.Add( rec );

			}
			return styles;
		}