/*
	The DIV that contains the form
*/
	.DynamicForm {
		text-align: left;
	}
	
	/*
		the DIV used for padding on the top
	*/
		.DyanmicForm_padding_top {
			font-size: 1px;
			overflow: hidden;
		}
		
	/*
		The DIV used for padding on the left
	*/
		.DynamicForm_padding_left {
			float: left;
			font-size: 1px;
			overflow: hidden;
		}
		
	/*
		The DIV that contains all the sections
	*/
		.DynamicForm_content {
			float:left;
		}
	
		/*
			The DIV That contains a section
		*/
			.DyanmicSection {

			}

			/*
				The DIV that  contains a section title
			*/
				.DynamicSection_title, .DynamicSection_title_adjust {
					font-family: Arial;
					font-size: 13px;
					font-weight: bold;
					color: #000000;
				}

			/*
				The DIV that contains the section description
			*/
				.DynamicSection_description, .DynamicSection_description_adjust {
					font-family: Arial;
					font-size: 11px;
					font-weight: normal;
					color: #333333;
				}

			/*
				The DIV that contains an input
			*/
				.DynamicInput {

				}

				/*
					The DIV that contains an inputs name
				*/
					.DynamicInput_name {
						float: left;
					}
					.DynamicInput_name, .DynamicInput_name_adjust { 
						font-family: Arial;
						font-size: 12px;
						font-weight: bold;
						color: #000000;
					}

				/*
					The DIV That contains the input object
				*/
					.DynamicInput_holder {
						float: right;
					}

				/*
					The DIV that contains the description
				*/
					.DynamicInput_description {
						float: right;
					}
					.DynamicInput_description, .DynamicInput_description_adjust {
						font-family: Arial;
						font-size: 11px;
						font-weight: normal;
						color: #777777;
					}
			
		/*
			The DIV that contains buttons
		*/
			.DynamicForm_buttons {
			
			}
			
			/*
				A button on the form
			*/
				.DynamicForm_button {
					float: right;
					font-family: Arial;
					font-size: 11px;
					font-weight: normal;
					color: #333333;
					margin-right: 3px;
				}
					
/*
	A text input
*/
	.DynamicTextInput {
		border: 1px solid #000000;
		font-family: Arial;
		font-size: 11px;
		font-weight: normal;
		color: #333333;
		-moz-box-sizing: border-box;
	}
	